forked from macports/macports-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gawk: fix destroot failure when upgrading from previous versions on M…
…ountain Lion or earlier (https://trac.macports.org/ticket/43406) by fixing the part of the Makefile that removes the extension .la files git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@119180 d073be05-634f-4543-b044-5fe20cf6d1d6
- Loading branch information
1 parent
1c3de89
commit 840872f
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- extension/Makefile.in.orig 2014-04-08 11:13:03.000000000 -0500 | ||
+++ extension/Makefile.in 2014-04-18 19:52:28.000000000 -0500 | ||
@@ -1231,7 +1231,7 @@ | ||
|
||
install-data-hook: | ||
for i in $(pkgextension_LTLIBRARIES) ; do \ | ||
- $(RM) $(pkgextensiondir)/$$i ; \ | ||
+ $(RM) $(DESTDIR)$(pkgextensiondir)/$$i ; \ | ||
done | ||
|
||
# Keep the uninstall check working: |