Skip to content

Commit 5420bc3

Browse files
committed
Don't delete test output when "make clean" is run -- only when "make
clobber" is run. (Thanks Thomas W. for pointing this out!)
1 parent 77b5e33 commit 5420bc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.pre.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1031,13 +1031,13 @@ rmtestturds:
10311031
-rm -f *.txt
10321032
-rm -f gb-18030-2000.xml
10331033

1034-
clean: pycremoval rmtestturds
1034+
clean: pycremoval
10351035
find . -name '*.o' -exec rm -f {} ';'
10361036
find . -name '*.s[ol]' -exec rm -f {} ';'
10371037
find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
10381038
find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
10391039

1040-
clobber: clean
1040+
clobber: clean rmtestturds
10411041
-rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
10421042
tags TAGS \
10431043
config.cache config.log pyconfig.h Modules/config.c

0 commit comments

Comments
 (0)