diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-08-12 05:56:45 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-08-12 05:56:45 +0300 |
commit | a9298670aee293adad4693604b6b92cac8139d9f (patch) | |
tree | ede9b1e047814bb12179920a6b496ec8b20e7d65 /extension | |
parent | 01f1baef24748e4741572fbd7ed8a1dce522fe95 (diff) | |
parent | 6b9d87b595278e606096018ea16615033c5571fe (diff) | |
download | egawk-a9298670aee293adad4693604b6b92cac8139d9f.tar.gz egawk-a9298670aee293adad4693604b6b92cac8139d9f.tar.bz2 egawk-a9298670aee293adad4693604b6b92cac8139d9f.zip |
Merge branch 'master' into cmake
Diffstat (limited to 'extension')
-rw-r--r-- | extension/ChangeLog | 8 | ||||
-rw-r--r-- | extension/Makefile.am | 2 | ||||
-rw-r--r-- | extension/Makefile.in | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/extension/ChangeLog b/extension/ChangeLog index f3a1c7a8..ab3d62c0 100644 --- a/extension/ChangeLog +++ b/extension/ChangeLog @@ -1,3 +1,11 @@ +2014-06-13 Paul Gortmaker <paul.gortmaker@windriver.com> + + * Makefile.am (uninstall-so): Came across below bug while cross + compiling, and changed both install-data-hook and uninstall-so + to use $(DESTDIR) on v4.1.1 before seeing most of the fix in + gawk-4.1.1-3-g976f73ab0356; here we ensure uninstall-so also + uses the $(DESTDIR) prefix on its use of pkgextensiondir. + 2014-04-11 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (install-data-hook): Use $(DESTDIR) when removing diff --git a/extension/Makefile.am b/extension/Makefile.am index 11826e2b..b6beaee3 100644 --- a/extension/Makefile.am +++ b/extension/Makefile.am @@ -105,7 +105,7 @@ install-data-hook: # Keep the uninstall check working: uninstall-so: - $(RM) $(pkgextensiondir)/*.so + $(RM) $(DESTDIR)$(pkgextensiondir)/*.so uninstall-recursive: uninstall-so diff --git a/extension/Makefile.in b/extension/Makefile.in index d81b1696..294e4f88 100644 --- a/extension/Makefile.in +++ b/extension/Makefile.in @@ -1236,7 +1236,7 @@ install-data-hook: # Keep the uninstall check working: uninstall-so: - $(RM) $(pkgextensiondir)/*.so + $(RM) $(DESTDIR)$(pkgextensiondir)/*.so uninstall-recursive: uninstall-so |