mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
configure: remove bashism.
svn path=/trunk/; revision=59910
This commit is contained in:
parent
2e11e06309
commit
7c164e2686
1 changed files with 2 additions and 2 deletions
|
@ -21,14 +21,14 @@ while [ $# -gt 0 ]; do
|
|||
-D)
|
||||
shift
|
||||
if echo "x$1" | grep 'x?*=*' > /dev/null; then
|
||||
ROS_CMAKEOPTS+=" -D $1"
|
||||
ROS_CMAKEOPTS=$ROS_CMAKEOPTS" -D $1"
|
||||
else
|
||||
usage
|
||||
fi
|
||||
;;
|
||||
|
||||
-D?*=*|-D?*)
|
||||
ROS_CMAKEOPTS+=" $1"
|
||||
ROS_CMAKEOPTS=$ROS_CMAKEOPTS" $1"
|
||||
;;
|
||||
makefiles|Makefiles)
|
||||
CMAKE_GENERATOR="Unix Makefiles"
|
||||
|
|
Loading…
Reference in a new issue