From 921cdc758b4fb28edcaeb2b1aa9e0f6cdabda023 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Tue, 28 Jun 2005 12:38:39 +0000 Subject: [PATCH] "clean" target now deletes $(SOURCES) xml files instead of doing a blanket "rm -f *.xml", which was causing hte l10n.xml file to be deleted. That file is under version control, so deleting it was forcing you to do a "cvs update" after you run "make clean". if you forget, it screws up the build. --- xsl/common/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xsl/common/Makefile b/xsl/common/Makefile index 5df9a44e1..c765d3011 100644 --- a/xsl/common/Makefile +++ b/xsl/common/Makefile @@ -76,4 +76,4 @@ zh_tw.xml: ../../gentext/locale/zh_tw.xml $(GENSTYLE) $(XSLT) ../../gentext/locale/en.xml ../../gentext/xsl/xsl.xsl $@ locale.file=$@ clean: - rm -f *.ent *.xml + $(RM) $(SOURCES) -- 2.40.0