diff options
Diffstat (limited to 'extension')
-rw-r--r-- | extension/ChangeLog | 5 | ||||
-rw-r--r-- | extension/Makefile.am | 6 | ||||
-rw-r--r-- | extension/Makefile.in | 6 |
3 files changed, 17 insertions, 0 deletions
diff --git a/extension/ChangeLog b/extension/ChangeLog index 0293ae99..2f15635e 100644 --- a/extension/ChangeLog +++ b/extension/ChangeLog @@ -1,3 +1,8 @@ +2013-11-28 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (uninstall-so, uninstall-recursive): Remove the + .so files. Keeps make distcheck happy. + 2013-11-17 Dmitry V. Levin <ldv@altlinux.org> * Makefile.am (dist_man_MANS): Add inplace.3am. diff --git a/extension/Makefile.am b/extension/Makefile.am index 6ecffabc..3ef72568 100644 --- a/extension/Makefile.am +++ b/extension/Makefile.am @@ -103,6 +103,12 @@ install-data-hook: $(RM) $(pkgextensiondir)/$$i ; \ done +# Keep the uninstall check working: +uninstall-so: + $(RM) $(pkgextensiondir)/*.so + +uninstall-recursive: uninstall-so + EXTRA_DIST = build-aux/config.rpath \ ChangeLog \ ChangeLog.0 \ diff --git a/extension/Makefile.in b/extension/Makefile.in index ee55d65b..bc7d81af 100644 --- a/extension/Makefile.in +++ b/extension/Makefile.in @@ -1195,6 +1195,12 @@ install-data-hook: $(RM) $(pkgextensiondir)/$$i ; \ done +# Keep the uninstall check working: +uninstall-so: + $(RM) $(pkgextensiondir)/*.so + +uninstall-recursive: uninstall-so + # This is an ugly hack, initially for MirBSD but probably needed for other # systems. If gawk doesn't have the API built in, don't try to build the # extensions. |