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 /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 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 6e5715d7..c14a39b3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -176,7 +176,7 @@ dist-hook: sed -n -f configpk.sed < ../configure.ac > /tmp/tmp.sed ; \ sed -f config.sed < ../configh.in > /tmp/config.tmp ; \ sed -f /tmp/tmp.sed < /tmp/config.tmp > config.h ; \ - $(RM) /tmp/tmp.sed /tmp/config.tmp + rm -f /tmp/tmp.sed /tmp/config.tmp pwd chmod u+w $(distdir)/pc/config.h cp $(srcdir)/pc/config.h $(distdir)/pc/config.h |