aboutsummaryrefslogtreecommitdiffstats
path: root/extension/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'extension/Makefile.in')
-rw-r--r--extension/Makefile.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/extension/Makefile.in b/extension/Makefile.in
index 692998bf..46168e4e 100644
--- a/extension/Makefile.in
+++ b/extension/Makefile.in
@@ -513,6 +513,9 @@ AM_CPPFLAGS = -I$(srcdir)/..
# correctly after changing configure.ac
ACLOCAL_AMFLAGS = -I m4
+# For some make's, e.g. OpenBSD, that don't define this
+RM = rm -f
+
# Note: rwarray does not currently compile.
pkgextension_LTLIBRARIES = \
filefuncs.la \
@@ -1231,12 +1234,12 @@ uninstall-man: uninstall-man3
install-data-hook:
for i in $(pkgextension_LTLIBRARIES) ; do \
- rm -f $(DESTDIR)$(pkgextensiondir)/$$i ; \
+ $(RM) $(DESTDIR)$(pkgextensiondir)/$$i ; \
done
# Keep the uninstall check working:
uninstall-so:
- rm -f $(DESTDIR)$(pkgextensiondir)/*.so
+ $(RM) $(DESTDIR)$(pkgextensiondir)/*.so
uninstall-recursive: uninstall-so