Author: sebor
Date: Fri Aug 26 18:20:13 2005
New Revision: 240371
URL: http://svn.apache.org/viewcvs?rev=240371&view=rev
Log:
2005-08-26 Martin Sebor <[EMAIL PROTECTED]>
* GNUmakefile.tst: used the echo shell builtin instead
of ls as an optimization. Corrected a typo in a comment.
Modified:
incubator/stdcxx/trunk/etc/config/GNUmakefile.tst
Modified: incubator/stdcxx/trunk/etc/config/GNUmakefile.tst
URL:
http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/etc/config/GNUmakefile.tst?rev=240371&r1=240370&r2=240371&view=diff
==============================================================================
--- incubator/stdcxx/trunk/etc/config/GNUmakefile.tst (original)
+++ incubator/stdcxx/trunk/etc/config/GNUmakefile.tst Fri Aug 26 18:20:13 2005
@@ -57,7 +57,7 @@
VPATH += $(TESTDIR)/src
# compile-only tests generated in the cwd
-COMPILE_SRCS = $(shell ls *.cpp 2>/dev/null)
+COMPILE_SRCS = $(shell echo *.cpp 2>/dev/null)
COMPILE_OBJS = $(patsubst %.cpp,%.o,$(COMPILE_SRCS))
# Targets to be built
@@ -84,7 +84,7 @@
realclean: clean dependclean
rm -f _*.cpp
-# build all tests in the given subdirectory (subsection of teh standard)
+# build all tests in the given subdirectory (subsection of the standard)
$(SUBDIRS):
$(MAKE) SRCS="`cd $(TESTDIR)/$@/ && echo *.cpp`"