Changeset 3732
- Timestamp:
- 04/08/08 15:28:04 (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
r3731 r3732 20 20 21 21 _subdir: ${_subdir_dep} 22 @if test x"$ (umask 2>/dev/null)" != 022; then \22 @if test x"$$(umask 2>/dev/null | sed 's/00*22/OK/')" != x"OK"; then \ 23 23 echo >&2 Error: you must build with “umask 022”, sorry.; \ 24 24 exit 1; \ trunk/freewrt/GNUmakefile
r3731 r3732 17 17 18 18 _subdir: ${_subdir_dep} 19 @if test x"$ (umask 2>/dev/null)" != 022; then \19 @if test x"$$(umask 2>/dev/null | sed 's/00*22/OK/')" != x"OK"; then \ 20 20 echo >&2 Error: you must build with “umask 022”, sorry.; \ 21 21 exit 1; \ trunk/freewrt/Makefile
r3731 r3732 138 138 exit 1; \ 139 139 fi 140 @if test x"$ (umask 2>/dev/null)" != 022; then \140 @if test x"$$(umask 2>/dev/null | sed 's/00*22/OK/')" != x"OK"; then \ 141 141 echo >&2 Error: you must build with “umask 022”, sorry.; \ 142 142 exit 1; \ trunk/freewrt/mk/build.mk
r3731 r3732 8 8 export TOPDIR 9 9 10 ifneq ($(shell umask ),022)10 ifneq ($(shell umask 2>/dev/null | sed 's/0*022/OK/'),OK) 11 11 $(error your umask is not 022) 12 12 endif


