Changeset 702ae5e in freewrt
- Timestamp:
- Apr 8, 2008, 3:21:38 PM (18 years ago)
- Children:
- b2a5ce0
- Parents:
- 2955943
- Files:
-
- 4 edited
-
BSDmakefile (modified) (1 diff)
-
GNUmakefile (modified) (1 diff)
-
Makefile (modified) (1 diff)
-
mk/build.mk (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
BSDmakefile
r2955943 r702ae5e 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} -
GNUmakefile
r2955943 r702ae5e 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} -
Makefile
r2955943 r702ae5e 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 -
mk/build.mk
r2955943 r702ae5e 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
Note:
See TracChangeset
for help on using the changeset viewer.
