From: mb Date: Tue, 2 Nov 2010 15:30:31 +0000 (+0000) Subject: horst: Fix parallel build. The "buildstamp" rule runs "make clean" in parallel with... X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=3dfd6351120267d640e331a0f8c020fd172c5f2f;p=packages.git horst: Fix parallel build. The "buildstamp" rule runs "make clean" in parallel with the objects build. This obviously is no good. Simply remove the stamp. git-svn-id: svn://svn.openwrt.org/openwrt/packages@23782 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/net/horst/patches/100-compile-fixes.patch b/net/horst/patches/100-compile-fixes.patch new file mode 100644 index 000000000..7893a7193 --- /dev/null +++ b/net/horst/patches/100-compile-fixes.patch @@ -0,0 +1,23 @@ +Index: horst-2.0-rc1/Makefile +=================================================================== +--- horst-2.0-rc1.orig/Makefile 2010-11-02 16:26:44.449999688 +0100 ++++ horst-2.0-rc1/Makefile 2010-11-02 16:27:13.640982158 +0100 +@@ -28,9 +28,7 @@ + LIBS+=-lpcap + endif + +-buildstamp=.build_debug$(DEBUG)pcap$(PCAP) +- +-all: $(buildstamp) $(NAME) ++all: $(NAME) + + # include dependencies + protocol_parser.o: protocol_parser.h ieee80211.h ieee80211_radiotap.h ieee80211_util.h \ +@@ -48,7 +46,3 @@ + -rm -f *.o *~ + -rm -f $(NAME) + -rm -f .build_* +- +-$(buildstamp): +- make clean +- touch $@