overlay/sys-kernel/recoveryinitramfs/files/readline/6.2/006_all_readline-5.2-no-ignore-shlib-errors.patch
Mario Fetka f6f4275a3f initial commit
Package-Manager: portage-2.2.0_alpha142
RepoMan-Options: --force
2012-12-02 22:47:51 +01:00

25 lines
688 B
Diff

dont ignore errors in the shlib subdir
http://bugs.gentoo.org/216952
--- Makefile.in
+++ Makefile.in
@@ -194,7 +194,7 @@
shared: force
-test -d shlib || mkdir shlib
- -( cd shlib ; ${MAKE} ${MFLAGS} all )
+ ( cd shlib ; ${MAKE} ${MFLAGS} all )
documentation: force
-test -d doc || mkdir doc
@@ -238,7 +238,7 @@
-( cd shlib; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall )
install-shared: installdirs install-headers shared install-doc
- -( cd shlib ; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} install )
+ ( cd shlib ; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} install )
uninstall-shared: maybe-uninstall-headers
-( cd shlib; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall )