Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 245579 Details for
Bug 334727
net-dialup/ppp-2.4.5 build failures in src_compile not caught
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Abort build on error
gentoo334727a.patch (text/plain), 1.21 KB, created by
Martin von Gagern
on 2010-09-01 11:45:51 UTC
(
hide
)
Description:
Abort build on error
Filename:
MIME Type:
Creator:
Martin von Gagern
Created:
2010-09-01 11:45:51 UTC
Size:
1.21 KB
patch
obsolete
>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.orig/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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 334727
:
244981
| 245579