Changeset 246
- Timestamp:
- 04/29/08 13:28:59 (7 months ago)
- Files:
-
- home/bin/build (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
home/bin/build
r245 r246 185 185 build_intree_only () { 186 186 # MPlayer can't be built out-of-tree 187 test -e mplayer.c187 [ $BUILD_IN_TREE -o -e mplayer.c ] 188 188 } 189 189 … … 320 320 BUILD_DRY_RUN="" 321 321 BUILD_VERBOSE="" 322 BUILD_IN_TREE="" 322 323 323 324 GETOPTEST=`getopt --version` … … 326 327 case $GETOPTEST in 327 328 getopt*) # GNU getopt 328 TEMP=`getopt -l dry-run -l help -l verbose -l arch:: - - +$SHORTOPTS $@`329 TEMP=`getopt -l dry-run -l help -l verbose -l arch:: -l in-tree -- +$SHORTOPTS $@` 329 330 ;; 330 331 *) # POSIX getopt ? … … 354 355 shift 355 356 build_set_arch $1 357 ;; 358 --in-tree) 359 BUILD_IN_TREE="y" 356 360 ;; 357 361 esac
