Changeset 36082
- Timestamp:
- 2013-03-17T22:12:02+01:00 (5 years ago)
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/toplevel.mk
r35716 r36082 9 9 RELEASE:=Barrier Breaker 10 10 PREP_MK= OPENWRT_BUILD= QUIET=0 11 12 export IS_TTY=$(shell tty -s && echo 1 || echo 0) 11 13 12 14 include $(TOPDIR)/include/verbose.mk … … 23 25 export REVISION 24 26 export OPENWRTVERSION 25 export IS_TTY=$(shell tty -s && echo 1 || echo 0)26 27 export LD_LIBRARY_PATH:=$(subst ::,:,$(if $(LD_LIBRARY_PATH),$(LD_LIBRARY_PATH):)$(STAGING_DIR_HOST)/lib) 27 28 export DYLD_LIBRARY_PATH:=$(subst ::,:,$(if $(DYLD_LIBRARY_PATH),$(DYLD_LIBRARY_PATH):)$(STAGING_DIR_HOST)/lib) … … 149 150 ./scripts/config/conf -D tmp/.config -w tmp/.config Config.in > /dev/null 2>&1; \ 150 151 if ./scripts/kconfig.pl '>' .config tmp/.config | grep -q CONFIG; then \ 151 echo "WARNING: your configuration is out of sync. Please run make menuconfig, oldconfig or defconfig!" >&2; \152 printf "$(_R)WARNING: your configuration is out of sync. Please run make menuconfig, oldconfig or defconfig!$(_N)\n" >&2; \ 152 153 fi \ 153 154 ) -
trunk/include/verbose.mk
r31486 r36082 28 28 ifneq ($(strip $(NO_COLOR)),1) 29 29 _Y:=\\033[33m 30 _R:=\\033[31m 30 31 _N:=\\033[m 31 32 endif … … 35 36 define MESSAGE 36 37 printf "$(_Y)%s$(_N)\n" "$(1)" >&8 38 endef 39 40 define ERROR_MESSAGE 41 printf "$(_R)%s$(_N)\n" "$(1)" >&8 37 42 endef 38 43 … … 59 64 printf "%s\n" "$(1)" 60 65 endef 66 ERROR_MESSAGE=$(MESSAGE) 61 67 endif
Note: See TracChangeset
for help on using the changeset viewer.