From 4662830a3d3367953194d7d04a91d5f07352212f Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 30 Sep 2002 10:34:04 +0000 Subject: [PATCH] [project @ 2002-09-30 10:34:04 by simonmar] wibble in dist-manifest rule (writing to MANIFEST.tmp isn't necessary and may hide errors) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8bebfbf..a5e9b32 100644 --- a/Makefile +++ b/Makefile @@ -275,7 +275,7 @@ dist :: # Automatic generation of a MANIFEST file for a source distribution # tree that is ready to go. dist-manifest :: - cd $(SRC_DIST_DIR); $(FIND) . \( -type l -o -type f \) -exec ls -lLG {} \; | sed -e 's/\.\///' > MANIFEST.tmp ; mv MANIFEST.tmp MANIFEST + cd $(SRC_DIST_DIR); $(FIND) . \( -type l -o -type f \) -exec ls -lLG {} \; | sed -e 's/\.\///' > MANIFEST dist-package :: dist-package-tar-gz -- 1.7.10.4