diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-01-26 07:14:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-01-26 07:14:01 +0000 |
commit | 5b6195c9bcf5536ec7c921f867573f51e6e4423f (patch) | |
tree | 6753fd2c3aad78ec3f49220e74ac7fbb3e06a8fe | |
parent | bc5262d3dd98881ae6dd7c9cf11d638a01977971 (diff) | |
download | busybox-w32-5b6195c9bcf5536ec7c921f867573f51e6e4423f.tar.gz busybox-w32-5b6195c9bcf5536ec7c921f867573f51e6e4423f.tar.bz2 busybox-w32-5b6195c9bcf5536ec7c921f867573f51e6e4423f.zip |
respect CFLAGS/CPPFLAGS in env
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -299,9 +299,9 @@ AFLAGS_KERNEL = | |||
299 | 299 | ||
300 | # Use LINUXINCLUDE when you must reference the include/ directory. | 300 | # Use LINUXINCLUDE when you must reference the include/ directory. |
301 | # Needed to be compatible with the O= option | 301 | # Needed to be compatible with the O= option |
302 | CFLAGS := | 302 | CFLAGS := $(CFLAGS) |
303 | CPPFLAGS := | 303 | CPPFLAGS := $(CPPFLAGS) |
304 | AFLAGS := | 304 | AFLAGS := $(AFLAGS) |
305 | 305 | ||
306 | # Read KERNELRELEASE from .kernelrelease (if it exists) | 306 | # Read KERNELRELEASE from .kernelrelease (if it exists) |
307 | KERNELRELEASE = $(shell cat .kernelrelease 2> /dev/null) | 307 | KERNELRELEASE = $(shell cat .kernelrelease 2> /dev/null) |