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.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 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index d243df5b..5233b363 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1175,7 +1175,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 |