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.am | |
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.am')
-rw-r--r-- | extension/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/Makefile.am b/extension/Makefile.am index b6beaee3..b6c969ba 100644 --- a/extension/Makefile.am +++ b/extension/Makefile.am @@ -100,12 +100,12 @@ testext_la_LIBADD = $(MY_LIBS) 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 |