From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 38EA6138334 for ; Wed, 14 Aug 2019 12:15:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 478CDE082F; Wed, 14 Aug 2019 12:15:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15047E082F for ; Wed, 14 Aug 2019 12:15:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5705F349B1D for ; Wed, 14 Aug 2019 12:15:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 435EC759 for ; Wed, 14 Aug 2019 12:15:03 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1565784834.6a7a47eb486af8ef1b3a1e87e87e9c4784075132.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/liblockfile/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/liblockfile/files/liblockfile-1.16-makefile.patch X-VCS-Directories: net-libs/liblockfile/files/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 6a7a47eb486af8ef1b3a1e87e87e9c4784075132 X-VCS-Branch: master Date: Wed, 14 Aug 2019 12:15:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ee7b0253-679f-42a9-b3c4-623df7acce44 X-Archives-Hash: 96ce4def171aab345971e14397ad8f0a commit: 6a7a47eb486af8ef1b3a1e87e87e9c4784075132 Author: Guilherme Amadio gentoo org> AuthorDate: Wed Aug 14 12:11:41 2019 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Wed Aug 14 12:13:54 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a7a47eb net-libs/liblockfile: fix Makefile patch for prefix Closes: https://bugs.gentoo.org/692132 Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Guilherme Amadio gentoo.org> .../liblockfile/files/liblockfile-1.16-makefile.patch | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/net-libs/liblockfile/files/liblockfile-1.16-makefile.patch b/net-libs/liblockfile/files/liblockfile-1.16-makefile.patch index 656ccd3c494..1994680be77 100644 --- a/net-libs/liblockfile/files/liblockfile-1.16-makefile.patch +++ b/net-libs/liblockfile/files/liblockfile-1.16-makefile.patch @@ -29,12 +29,12 @@ index 2721b48..798c603 100644 install_static: static install_common - install -d -m 755 -g root -p $(libdir) - install -m 644 liblockfile.a $(libdir) -+ install -d -m 755 -g root -p $(DESTDIR)$(libdir) ++ install -d -m 755 -p $(DESTDIR)$(libdir) + install -m 644 liblockfile.a $(DESTDIR)$(libdir) install_shared: shared install_static install_common - install -d -m 755 -g root -p $(libdir) -+ install -d -m 755 -g root -p $(DESTDIR)$(libdir) ++ install -d -m 755 -p $(DESTDIR)$(libdir) install -m 755 liblockfile.so \ - $(libdir)/liblockfile.so.$(SOVER) - ln -s liblockfile.so.$(SOVER) $(libdir)/liblockfile.so.$(MAJOR) @@ -50,17 +50,17 @@ index 2721b48..798c603 100644 - install -d -m 755 -g root -p $(mandir)/man1 - install -d -m 755 -g root -p $(mandir)/man3 - install -m 644 lockfile.h maillock.h $(includedir) -+ install -d -m 755 -g root -p $(DESTDIR)$(includedir) -+ install -d -m 755 -g root -p $(DESTDIR)$(bindir) -+ install -d -m 755 -g root -p $(DESTDIR)$(mandir)/man1 -+ install -d -m 755 -g root -p $(DESTDIR)$(mandir)/man3 ++ install -d -m 755 -p $(DESTDIR)$(includedir) ++ install -d -m 755 -p $(DESTDIR)$(bindir) ++ install -d -m 755 -p $(DESTDIR)$(mandir)/man1 ++ install -d -m 755 -p $(DESTDIR)$(mandir)/man3 + install -m 644 lockfile.h maillock.h $(DESTDIR)$(includedir) if [ "$(MAILGROUP)" != "" ]; then\ - install -g $(MAILGROUP) -m 2755 dotlockfile $(bindir);\ + install -g $(MAILGROUP) -m 2755 dotlockfile $(DESTDIR)$(bindir);\ else \ - install -g root -m 755 dotlockfile $(bindir); \ -+ install -g root -m 755 dotlockfile $(DESTDIR)$(bindir); \ ++ install -m 755 dotlockfile $(DESTDIR)$(bindir); \ fi - install -m 644 *.1 $(mandir)/man1 - install -m 644 *.3 $(mandir)/man3 @@ -70,7 +70,7 @@ index 2721b48..798c603 100644 install_nfslib: nfslib - install -d -m 755 -g root -p $(nfslockdir) - install -m 755 nfslock.so.$(NFSVER) $(nfslockdir) -+ install -d -m 755 -g root -p $(DESTDIR)$(nfslockdir) ++ install -d -m 755 -p $(DESTDIR)$(nfslockdir) + install -m 755 nfslock.so.$(NFSVER) $(DESTDIR)$(nfslockdir) if test "$(DESTDIR)" = ""; then @LDCONFIG@; fi