diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-08-12 06:24:01 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-08-12 06:24:01 +0300 |
commit | 1be1a93e63a7ff6b45c7c20908df8bfd2a86c1be (patch) | |
tree | 5b6eac00615169ad34ca74318f78acb057e8cc9f /extension/Makefile.in | |
parent | 52306503277c1259eeb704d6b94aed0392536e76 (diff) | |
download | egawk-1be1a93e63a7ff6b45c7c20908df8bfd2a86c1be.tar.gz egawk-1be1a93e63a7ff6b45c7c20908df8bfd2a86c1be.tar.bz2 egawk-1be1a93e63a7ff6b45c7c20908df8bfd2a86c1be.zip |
Use rm -f instead of $(RM) in Makefile.am files.
Diffstat (limited to 'extension/Makefile.in')
-rw-r--r-- | extension/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/Makefile.in b/extension/Makefile.in index 294e4f88..692998bf 100644 --- a/extension/Makefile.in +++ b/extension/Makefile.in @@ -1231,12 +1231,12 @@ uninstall-man: uninstall-man3 install-data-hook: for i in $(pkgextension_LTLIBRARIES) ; do \ - $(RM) $(DESTDIR)$(pkgextensiondir)/$$i ; \ + rm -f $(DESTDIR)$(pkgextensiondir)/$$i ; \ done # Keep the uninstall check working: uninstall-so: - $(RM) $(DESTDIR)$(pkgextensiondir)/*.so + rm -f $(DESTDIR)$(pkgextensiondir)/*.so uninstall-recursive: uninstall-so |