From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1OlWZP-000641-Lh for garchives@archives.gentoo.org; Wed, 18 Aug 2010 00:31:55 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E074E089B; Wed, 18 Aug 2010 00:31:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id F0598E089B for ; Wed, 18 Aug 2010 00:31:53 +0000 (UTC) Received: from corvid.gentoo.org (corvid.gentoo.org [208.92.234.79]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 860FB1B400A for ; Wed, 18 Aug 2010 00:31:53 +0000 (UTC) Received: by corvid.gentoo.org (Postfix, from userid 559) id 02EC82CF42; Wed, 18 Aug 2010 00:31:51 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/xfsprogs/files: xfsprogs-3.1.1-sharedlibs.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: xfsprogs-3.1.1-sharedlibs.patch X-VCS-Directories: sys-fs/xfsprogs/files X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Message-Id: <20100818003152.02EC82CF42@corvid.gentoo.org> Date: Wed, 18 Aug 2010 00:31:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 2cf05fd6-0ade-4029-a351-25342ea84cd3 X-Archives-Hash: 217e6236bc40296f4ff262df9b843f95 vapier 10/08/18 00:31:51 Modified: xfsprogs-3.1.1-sharedlibs.patch Log: run lib install commands with set -e Revision Changes Path 1.3 sys-fs/xfsprogs/files/xfsprogs-3.1.1-sharedlibs.patc= h file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/xfsprogs/fi= les/xfsprogs-3.1.1-sharedlibs.patch?rev=3D1.3&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/xfsprogs/fi= les/xfsprogs-3.1.1-sharedlibs.patch?rev=3D1.3&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/xfsprogs/fi= les/xfsprogs-3.1.1-sharedlibs.patch?r1=3D1.2&r2=3D1.3 Index: xfsprogs-3.1.1-sharedlibs.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/sys-fs/xfsprogs/files/xfsprogs-3.1.1-sh= aredlibs.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- xfsprogs-3.1.1-sharedlibs.patch 17 Aug 2010 13:14:59 -0000 1.2 +++ xfsprogs-3.1.1-sharedlibs.patch 18 Aug 2010 00:31:51 -0000 1.3 @@ -83,7 +83,7 @@ =20 ifeq ($(ENABLE_SHARED),yes) -INSTALL_LTLIB =3D \ -+_INSTALL_LTLIB =3D \ ++_INSTALL_LTLIB =3D 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_D= IR); \ @@ -111,7 +111,7 @@ - ../$(INSTALL) -S $(PKG_LIB_DIR)/$(LIBNAME).la $(PKG_ROOT_LIB_DIR)/$(LI= BNAME).la; \ - ../$(INSTALL) -S $(PKG_ROOT_LIB_DIR)/$(LIBNAME).so $(PKG_LIB_DIR)/$(LI= BNAME).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