diff options
author | Florian Fainelli <florian@openwrt.org> | 2013-07-03 17:23:55 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2013-07-03 17:23:55 +0000 |
commit | c6c0d9456c4905a8bb762f854d8876555ef31b71 (patch) | |
tree | 5bc862c04db4744d41d4986267f79276e4bbc746 /package/devel/trace-cmd/Makefile | |
parent | e3a369e5977f26ba1077212321cf54bda661ca03 (diff) | |
download | upstream-c6c0d9456c4905a8bb762f854d8876555ef31b71.tar.gz upstream-c6c0d9456c4905a8bb762f854d8876555ef31b71.tar.bz2 upstream-c6c0d9456c4905a8bb762f854d8876555ef31b71.zip |
trace-cmd: remove the compile fix patch
And instead override TARGET_CFLAGS to set _GNU_SOURCE accordingly since
this is the upstream maintainer solution.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 37152
Diffstat (limited to 'package/devel/trace-cmd/Makefile')
-rw-r--r-- | package/devel/trace-cmd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/devel/trace-cmd/Makefile b/package/devel/trace-cmd/Makefile index 5263841aac..f7c211f0c9 100644 --- a/package/devel/trace-cmd/Makefile +++ b/package/devel/trace-cmd/Makefile @@ -37,7 +37,7 @@ MAKE_FLAGS += \ PLUGINS_DIR := $(PKG_INSTALL_DIR)/usr/lib/trace-cmd/plugins PLUGINS_MAIN := function hrtimer mac80211 sched_switch -TARGET_CFLAGS += --std=gnu99 +TARGET_CFLAGS += --std=gnu99 -D_GNU_SOURCE define Package/trace-cmd/install $(INSTALL_DIR) $(1)/usr/bin $(1)/usr/lib/trace-cmd/plugins |