diff options
author | Roman Yeryomin <roman@advem.lv> | 2013-05-26 01:02:55 +0300 |
---|---|---|
committer | Roman Yeryomin <roman@advem.lv> | 2013-05-26 01:02:55 +0300 |
commit | 342045a35b1981a89e4bc80842b10c065e1050da (patch) | |
tree | 4140720b20e8d641c11da882010d6130a75fef21 /package/boot/uboot-envtools/patches/002-makefile.patch | |
parent | 7338133dde8238afce34676214b494c8db96689b (diff) | |
parent | 1a116ce7818ecee5d167a9c0ebb1a0feca9120e6 (diff) |
Merge trunk into realtek-unstable
Conflicts:
Config.in
feeds.conf.default
package/base-files/files/etc/hotplug2-common.rules
package/network/config/netifd/files/etc/init.d/network
Diffstat (limited to 'package/boot/uboot-envtools/patches/002-makefile.patch')
-rw-r--r-- | package/boot/uboot-envtools/patches/002-makefile.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/package/boot/uboot-envtools/patches/002-makefile.patch b/package/boot/uboot-envtools/patches/002-makefile.patch deleted file mode 100644 index b18bff6e7..000000000 --- a/package/boot/uboot-envtools/patches/002-makefile.patch +++ /dev/null @@ -1,44 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -21,34 +21,17 @@ - # MA 02111-1307 USA - # - --include $(TOPDIR)/config.mk -- --HOSTSRCS := $(SRCTREE)/lib/crc32.c fw_env.c fw_env_main.c -+SRCS := crc32.c fw_env.c fw_env_main.c - HEADERS := fw_env.h - --# Compile for a hosted environment on the target --HOSTCPPFLAGS = -idirafter $(SRCTREE)/include \ -- -idirafter $(OBJTREE)/include2 \ -- -idirafter $(OBJTREE)/include \ -- -DUSE_HOSTCC -- --ifeq ($(MTD_VERSION),old) --HOSTCPPFLAGS += -DMTD_OLD --endif -- --all: $(obj)fw_printenv -- --# Some files complain if compiled with -pedantic, use HOSTCFLAGS_NOPED --$(obj)fw_printenv: $(HOSTSRCS) $(HEADERS) -- $(HOSTCC) $(HOSTCFLAGS_NOPED) $(HOSTLDFLAGS) -o $@ $(HOSTSRCS) -+CPPFLAGS := -Wall $(CFLAGS) - --clean: -- rm -f $(obj)fw_printenv -+all: fw_printenv - --######################################################################### -+fw_printenv: $(SRCS) $(HEADERS) -+ $(CC) $(CPPFLAGS) $(SRCS) -o fw_printenv - --include $(TOPDIR)/rules.mk -- --sinclude $(obj).depend -+clean: -+ rm -f fw_printenv - - ######################################################################### |