[llvm-commits] [test-suite] r58170 - in /test-suite/trunk/MultiSource/Benchmarks/BitBench: uudecode/Makefile uuencode/Makefile
Dan Gohman
gohman at apple.com
Sat Oct 25 16:27:37 PDT 2008
Author: djg
Date: Sat Oct 25 18:27:37 2008
New Revision: 58170
URL: http://llvm.org/viewvc/llvm-project?rev=58170&view=rev
Log:
Fix for srcdir != objdir.
Modified:
test-suite/trunk/MultiSource/Benchmarks/BitBench/uudecode/Makefile
test-suite/trunk/MultiSource/Benchmarks/BitBench/uuencode/Makefile
Modified: test-suite/trunk/MultiSource/Benchmarks/BitBench/uudecode/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/BitBench/uudecode/Makefile?rev=58170&r1=58169&r2=58170&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/BitBench/uudecode/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/BitBench/uudecode/Makefile Sat Oct 25 18:27:37 2008
@@ -2,5 +2,5 @@
PROG = uudecode
LDFLAGS =
-RUN_OPTIONS = input-file
+RUN_OPTIONS = $(PROJ_SRC_DIR)/input-file
include $(LEVEL)/MultiSource/Makefile.multisrc
Modified: test-suite/trunk/MultiSource/Benchmarks/BitBench/uuencode/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/BitBench/uuencode/Makefile?rev=58170&r1=58169&r2=58170&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/BitBench/uuencode/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/BitBench/uuencode/Makefile Sat Oct 25 18:27:37 2008
@@ -2,5 +2,5 @@
PROG = uuencode
LDFLAGS =
-RUN_OPTIONS = uuencode.c
+RUN_OPTIONS = $(PROJ_SRC_DIR)/uuencode.c
include $(LEVEL)/MultiSource/Makefile.multisrc
More information about the llvm-commits
mailing list