From 66763262512e45ed86e56545848c1d4c91688f8d Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Mon, 19 Jul 1999 15:52:58 +0000 Subject: [PATCH] Makefile.in: Add the -f option to rm when making the distribution_tar_file. --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 09a495c..1de6b8f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -95,11 +95,11 @@ check: (cd tests; make check) distribution_tar_file: - $(RM) -r /tmp/dest + $(RM) -rf /tmp/dest make DESTDIR=/tmp/dest install cd .. cp -r $(srcdir)/README $(srcdir)/install-utils /tmp/dest - $(RM) -r /tmp/dest/install-utils/CVS /tmp/dest/install-utils/ChangeLog + $(RM) -rf /tmp/dest/install-utils/CVS /tmp/dest/install-utils/ChangeLog cp $(srcdir)/INSTALL.@BINARY_TYPE@ /tmp/dest/INSTALL (cd /tmp/dest; $(TAR) cf - . ) | gzip -9 \ > e2fsprogs-@E2FSPROGS_VERSION@-@BINARY_TYPE@.tar.gz -- 1.8.3.1