From e75106aa0d82a64122954b5990b50ec80d8e4040 Mon Sep 17 00:00:00 2001 From: John Crispin Date: Tue, 16 Oct 2012 13:44:25 +0000 Subject: move boot related packages to their own folder SVN-Revision: 33781 --- package/uboot-envtools/patches/002-makefile.patch | 44 ----------------------- 1 file changed, 44 deletions(-) delete mode 100644 package/uboot-envtools/patches/002-makefile.patch (limited to 'package/uboot-envtools/patches/002-makefile.patch') diff --git a/package/uboot-envtools/patches/002-makefile.patch b/package/uboot-envtools/patches/002-makefile.patch deleted file mode 100644 index b18bff6..0000000 --- a/package/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 - - ######################################################################### -- cgit v1.1