Changeset 4698 in orxonox.OLD for orxonox/trunk/configure
- Timestamp:
- Jun 25, 2005, 12:18:55 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/configure
r4697 r4698 1602 1602 fi 1603 1603 1604 if mkdir -p -- . 2>/dev/null; then1604 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then 1605 1605 # Keeping the `.' argument allows $(mkdir_p) to be used without 1606 1606 # argument. Indeed, we sometimes output rules like … … 1615 1615 # directories to create, and then abort because `.' already 1616 1616 # exists. 1617 for d in ./-p ./-- ;1617 for d in ./-p ./--version; 1618 1618 do 1619 1619 test -d $d && rmdir $d … … 2521 2521 for i in 1 2 3 4 5 6; do 2522 2522 echo '#include "conftst'$i'.h"' >> sub/conftest.c 2523 : > sub/conftst$i.h 2523 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with 2524 # Solaris 8's {/usr,}/bin/sh. 2525 touch sub/conftst$i.h 2524 2526 done 2525 2527 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf … … 2549 2551 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then 2550 2552 # icc doesn't choke on unknown options, it will just issue warnings 2551 # (even with -Werror). So we grep stderr for any message 2552 # that says an option was ignored. 2553 if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else 2553 # or remarks (even with -Werror). So we grep stderr for any message 2554 # that says an option was ignored or not supported. 2555 # When given -MP, icc 7.0 and 7.1 complain thusly: 2556 # icc: Command line warning: ignoring option '-M'; no argument required 2557 # The diagnosis changed in icc 8.0: 2558 # icc: Command line remark: option '-MP' not supported 2559 if (grep 'ignoring option' conftest.err || 2560 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else 2554 2561 am_cv_CXX_dependencies_compiler_type=$depmode 2555 2562 break … … 3432 3439 for i in 1 2 3 4 5 6; do 3433 3440 echo '#include "conftst'$i'.h"' >> sub/conftest.c 3434 : > sub/conftst$i.h 3441 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with 3442 # Solaris 8's {/usr,}/bin/sh. 3443 touch sub/conftst$i.h 3435 3444 done 3436 3445 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf … … 3460 3469 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then 3461 3470 # icc doesn't choke on unknown options, it will just issue warnings 3462 # (even with -Werror). So we grep stderr for any message 3463 # that says an option was ignored. 3464 if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else 3471 # or remarks (even with -Werror). So we grep stderr for any message 3472 # that says an option was ignored or not supported. 3473 # When given -MP, icc 7.0 and 7.1 complain thusly: 3474 # icc: Command line warning: ignoring option '-M'; no argument required 3475 # The diagnosis changed in icc 8.0: 3476 # icc: Command line remark: option '-MP' not supported 3477 if (grep 'ignoring option' conftest.err || 3478 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else 3465 3479 am_cv_CC_dependencies_compiler_type=$depmode 3466 3480 break … … 10322 10336 # Extract the definition of DEP_FILES from the Makefile without 10323 10337 # running `make'. 10324 DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`10338 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` 10325 10339 test -z "$DEPDIR" && continue 10326 10340 # When using ansi2knr, U may be empty or an underscore; expand it 10327 U=`sed -n -e '/^U = / s///p' < "$mf"`10341 U=`sed -n 's/^U = //p' < "$mf"` 10328 10342 test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR" 10329 10343 # We invoke sed twice because it is the simplest approach to 10330 10344 # changing $(DEPDIR) to its actual value in the expansion. 10331 for file in `sed -n -e'10345 for file in `sed -n ' 10332 10346 /^DEP_FILES = .*\\\\$/ { 10333 10347 s/^DEP_FILES = //
Note: See TracChangeset
for help on using the changeset viewer.