diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-09-25 14:10:04 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-09-25 14:10:04 +0000 |
commit | d0302d323b81940154e16372b753a7f442e26ce6 (patch) | |
tree | 3c42db698b06e7aef4a7958dd85b9ee5a583bb98 | |
parent | 3616f2d48c11334eaf26a1ee05b8ae1c976bb02c (diff) | |
download | upstream-d0302d323b81940154e16372b753a7f442e26ce6.tar.gz upstream-d0302d323b81940154e16372b753a7f442e26ce6.tar.bz2 upstream-d0302d323b81940154e16372b753a7f442e26ce6.zip |
make sure a predefined CFLAGS variable does not get in the way (fix for #4038)
SVN-Revision: 12702
-rw-r--r-- | include/toplevel.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/toplevel.mk b/include/toplevel.mk index 06b005568e..9d0eb25933 100644 --- a/include/toplevel.mk +++ b/include/toplevel.mk @@ -24,6 +24,9 @@ export REVISION export OPENWRTVERSION export IS_TTY=$(shell tty -s && echo 1 || echo 0) +# make sure that a predefined CFLAGS variable does not disturb packages +export CFLAGS= + ifeq ($(FORCE),) .config scripts/config/conf scripts/config/mconf: tmp/.prereq-build endif |