diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-08-18 00:31:51 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-08-18 00:31:51 +0000 |
commit | 8373c7bb0e455741a371bf741ce541bbd81fc525 (patch) | |
tree | 4936b34dcec47a66b36a6a3cb18abdda2405698a /sys-fs | |
parent | Stable for HPPA (bug #332577). (diff) | |
download | gentoo-2-8373c7bb0e455741a371bf741ce541bbd81fc525.tar.gz gentoo-2-8373c7bb0e455741a371bf741ce541bbd81fc525.tar.bz2 gentoo-2-8373c7bb0e455741a371bf741ce541bbd81fc525.zip |
run lib install commands with set -e
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/xfsprogs/files/xfsprogs-3.1.1-sharedlibs.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-fs/xfsprogs/files/xfsprogs-3.1.1-sharedlibs.patch b/sys-fs/xfsprogs/files/xfsprogs-3.1.1-sharedlibs.patch index 8d63ccdb3a24..31eff0c3b298 100644 --- a/sys-fs/xfsprogs/files/xfsprogs-3.1.1-sharedlibs.patch +++ b/sys-fs/xfsprogs/files/xfsprogs-3.1.1-sharedlibs.patch @@ -83,7 +83,7 @@ ripped from PLD Linux ifeq ($(ENABLE_SHARED),yes) -INSTALL_LTLIB = \ -+_INSTALL_LTLIB = \ ++_INSTALL_LTLIB = set -e; \ cd $(TOPDIR)/$(LIBNAME)/.libs; \ - ../$(INSTALL) -m 755 -d $(PKG_ROOT_LIB_DIR); \ - ../$(INSTALL) -m 644 -T so_dot_version $(LIBNAME).lai $(PKG_ROOT_LIB_DIR); \ @@ -111,7 +111,7 @@ ripped from PLD Linux - ../$(INSTALL) -S $(PKG_LIB_DIR)/$(LIBNAME).la $(PKG_ROOT_LIB_DIR)/$(LIBNAME).la; \ - ../$(INSTALL) -S $(PKG_ROOT_LIB_DIR)/$(LIBNAME).so $(PKG_LIB_DIR)/$(LIBNAME).so; \ - fi -+ cd $(TOPDIR)/$(LIBNAME); \ ++ set -e; cd $(TOPDIR)/$(LIBNAME); \ + $(INSTALL) -m 755 -d $(PKG_LIB_DIR); \ + env -uDIST_ROOT $(LTINSTALL) $(TOPDIR)/$(LIBNAME)/$(LIBNAME).la $(DIST_ROOT)$(PKG_LIB_DIR)/$(LIBNAME).la else |