Changeset 78
- Timestamp:
- 06/18/06 11:58:12 (6 years ago)
- Files:
-
- trunk/freewrt/Makefile (modified) (2 diffs)
- trunk/freewrt/scripts/scan-tools.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/Makefile
r76 r78 80 80 @${GMAKE_INV} world 81 81 82 prereq-noerror: 83 @${MAKE} prereq NO_ERROR=1 84 85 NO_ERROR=0 82 86 prereq: 83 87 @-rm -rf prereq lbin … … 114 118 @echo "export HOSTCC HOSTCFLAGS LC_ALL MAKE OStype PATH" \ 115 119 >>lbin/prereq.mk 116 @ bash scripts/scan-tools.sh120 @env NO_ERROR=${NO_ERROR} bash scripts/scan-tools.sh 117 121 @touch $@ trunk/freewrt/scripts/scan-tools.sh
r77 r78 42 42 export PATH=$topdir/lbin:$PATH 43 43 44 if [[ $NO_ERROR != @(0|1) ]]; then 45 echo Please do not invoke this script directly! 46 exit 1 47 fi 48 44 49 set -e 45 50 rm -rf $topdir/lbin/tmp … … 84 89 echo GNU make too old. 85 90 echo Please install GNU make 3.81 or higher to continue. 86 exit 1 91 if [[ $NO_ERROR = 1 ]]; then 92 echo WARNING: should abort here, continuing... 93 else 94 echo You can override this check, see http://www.freewrt.org/faq for details. 95 exit 1 96 fi 87 97 fi 88 98


