diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-02-26 04:04:05 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-02-26 04:04:05 +0000 |
commit | 74e1ebacbf29188a4d41381d83b2bb47e593b241 (patch) | |
tree | 508a04ffd433fb8c98a78b7c42aca7390835ef3b /user/ppp/30_all_Makefile.patch | |
parent | ce0afc1e48e10bf96d9de42a005669db6d41ed16 (diff) | |
download | packages-74e1ebacbf29188a4d41381d83b2bb47e593b241.tar.gz packages-74e1ebacbf29188a4d41381d83b2bb47e593b241.tar.bz2 packages-74e1ebacbf29188a4d41381d83b2bb47e593b241.tar.xz packages-74e1ebacbf29188a4d41381d83b2bb47e593b241.zip |
user/ppp: [CVE!] Bump to 2.4.8
Diffstat (limited to 'user/ppp/30_all_Makefile.patch')
-rw-r--r-- | user/ppp/30_all_Makefile.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/user/ppp/30_all_Makefile.patch b/user/ppp/30_all_Makefile.patch deleted file mode 100644 index 165fc7b22..000000000 --- a/user/ppp/30_all_Makefile.patch +++ /dev/null @@ -1,37 +0,0 @@ -Ensure that the build process aborts if there is an error in one of -the plugin subdirectories. - -2010-09-01 Martin von Gagern - -References: -http://bugs.gentoo.org/334727 - -Index: ppp-2.4.5/pppd/plugins/Makefile.linux -=================================================================== ---- ppp-2.4.5/pppd/plugins/Makefile.linux -+++ ppp-2.4.5/pppd/plugins/Makefile.linux -@@ -20,7 +20,7 @@ include .depend - endif - - all: $(PLUGINS) -- for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d all; done -+ for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d all || exit $?; done - - %.so: %.c - $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^ -@@ -30,12 +30,12 @@ VERSION = $(shell awk -F '"' '/VERSION/ - install: $(PLUGINS) - $(INSTALL) -d $(LIBDIR) - $(INSTALL) $? $(LIBDIR) -- for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d install; done -+ for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d install || exit $?; done - - clean: - rm -f *.o *.so *.a -- for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d clean; done -+ for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d clean || exit $?; done - - depend: - $(CPP) -M $(CFLAGS) *.c >.depend -- for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d depend; done -+ for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d depend || exit $?; done |