Changeset 3731
- Timestamp:
- 04/08/08 15:21:38 (8 months ago)
- Files:
-
- trunk/freewrt/BSDmakefile (modified) (1 diff)
- trunk/freewrt/GNUmakefile (modified) (1 diff)
- trunk/freewrt/Makefile (modified) (1 diff)
- trunk/freewrt/mk/build.mk (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/BSDmakefile
r2486 r3731 20 20 21 21 _subdir: ${_subdir_dep} 22 @if test x"$(umask 2>/dev/null)" != 022; then \ 23 echo >&2 Error: you must build with “umask 022”, sorry.; \ 24 exit 1; \ 25 fi 22 26 cd ${.CURDIR}/${subdir} && TOPDIR=${.CURDIR} DEVELOPER=1 \ 23 27 ${.CURDIR}/lbin/gmake V=99 ${.MFLAGS} ${_subdir} trunk/freewrt/GNUmakefile
r2299 r3731 17 17 18 18 _subdir: ${_subdir_dep} 19 @if test x"$(umask 2>/dev/null)" != 022; then \ 20 echo >&2 Error: you must build with “umask 022”, sorry.; \ 21 exit 1; \ 22 fi 19 23 cd ${subdir} && TOPDIR=${TOPDIR} DEVELOPER=1 \ 20 24 ${TOPDIR}/lbin/gmake V=99 ${MAKEFLAGS} ${MAKECMDGOALS} trunk/freewrt/Makefile
r3643 r3731 136 136 @if ! bash --version 2>&1 | fgrep 'GNU bash' >/dev/null 2>&1; then \ 137 137 echo "FreeWRT requires GNU bash to be installed, sorry."; \ 138 exit 1; \ 139 fi 140 @if test x"$(umask 2>/dev/null)" != 022; then \ 141 echo >&2 Error: you must build with “umask 022”, sorry.; \ 138 142 exit 1; \ 139 143 fi trunk/freewrt/mk/build.mk
r3673 r3731 5 5 # or at http://www.freewrt.org/licence for details. 6 6 7 TOPDIR=$ {shell pwd}7 TOPDIR=$(shell pwd) 8 8 export TOPDIR 9 10 ifneq ($(shell umask),022) 11 $(error your umask is not 022) 12 endif 9 13 10 14 CONFIG_CONFIG_IN = Config.in


