Arquivos
hhvm/configure
Ryan Skidmore 2ff6d3ca00 Fixed typos
Summary: Fixed typos

Reviewed By: @scannell

Pulled By: @scannell

Test Plan:
 - php -l and checkModule
 -
2013-12-09 07:22:23 -08:00

12 linhas
241 B
Bash
Arquivo Executável

#!/bin/sh
if [ "$1" = '--help' ] || [ "$1" = '-h' ]; then
echo 'usage: ./configure -Dvariable=argument ...\n'
echo 'Variables: '
echo ' CMAKE_BUILD_TYPE=Debug|Release Sets build type (default Release).'
exit 2
fi
cmake "$@" .