[Python-checkins] r43248 - python/trunk/Makefile.pre.in

hyeshik.chang python-checkins at python.org
Thu Mar 23 13:12:44 CET 2006


Author: hyeshik.chang
Date: Thu Mar 23 13:12:44 2006
New Revision: 43248

Modified:
   python/trunk/Makefile.pre.in
Log:
Cosmetic improvement for r43247


Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in	(original)
+++ python/trunk/Makefile.pre.in	Thu Mar 23 13:12:44 2006
@@ -719,10 +719,8 @@
 	do \
 		a=$(srcdir)/Lib/$$d; \
 		if test ! -d $$a; then continue; else true; fi; \
+		if test `ls $$a | wc -l` -lt 1; then continue; fi; \
 		b=$(LIBDEST)/$$d; \
-		if [ `ls $$a | wc -l` -lt 1 ]; then \
-			continue; \
-		fi; \
 		for i in $$a/*; \
 		do \
 			case $$i in \


More information about the Python-checkins mailing list