[llvm-commits] [test-suite] r58155 - /test-suite/trunk/MultiSource/Applications/lua/Makefile
Dan Gohman
gohman at apple.com
Sat Oct 25 14:48:18 PDT 2008
Author: djg
Date: Sat Oct 25 16:48:18 2008
New Revision: 58155
URL: http://llvm.org/viewvc/llvm-project?rev=58155&view=rev
Log:
Workaround for systems where /bin/sh doesn't support {...,...} expansion.
Modified:
test-suite/trunk/MultiSource/Applications/lua/Makefile
Modified: test-suite/trunk/MultiSource/Applications/lua/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/lua/Makefile?rev=58155&r1=58154&r2=58155&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Applications/lua/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/lua/Makefile Sat Oct 25 16:48:18 2008
@@ -23,7 +23,9 @@
if [ ! -f ./generate_inputs.sh ]; \
then \
cp -f $(PROJ_SRC_DIR)/generate_inputs.sh . ; \
- cp -f -r $(PROJ_SRC_DIR)/{test,bench,input} . ; \
+ cp -f -r $(PROJ_SRC_DIR)/test . ; \
+ cp -f -r $(PROJ_SRC_DIR)/bench . ; \
+ cp -f -r $(PROJ_SRC_DIR)/input . ; \
cp -f $(PROJ_SRC_DIR)/*.lua . ; \
fi
./generate_inputs.sh
More information about the llvm-commits
mailing list