[llvm-commits] [test-suite] r58152 - /test-suite/trunk/MultiSource/Applications/sqlite3/Makefile

Dan Gohman gohman at apple.com
Sat Oct 25 14:36:34 PDT 2008


Author: djg
Date: Sat Oct 25 16:36:33 2008
New Revision: 58152

URL: http://llvm.org/viewvc/llvm-project?rev=58152&view=rev
Log:
Fix a srcdir != objdir bug.

Modified:
    test-suite/trunk/MultiSource/Applications/sqlite3/Makefile

Modified: test-suite/trunk/MultiSource/Applications/sqlite3/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/sqlite3/Makefile?rev=58152&r1=58151&r2=58152&view=diff

==============================================================================
--- test-suite/trunk/MultiSource/Applications/sqlite3/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/sqlite3/Makefile Sat Oct 25 16:36:33 2008
@@ -5,7 +5,7 @@
 PROG = sqlite3
 CPPFLAGS += -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=0 -DHAVE_FDATASYNC=0 -DHAVE_USLEEP=0 -DHAVE_LOCALTIME_R=0 -DHAVE_GMTIME_R=0 -DHAVE_READLINE=0 -I. -DSQLITE_THREADSAFE=0 -DSQLITE_OMIT_LOAD_EXTENSION=1
 LDFLAGS =
-STDIN_FILENAME = commands
+STDIN_FILENAME = $(PROJ_SRC_DIR)/commands
 RUN_OPTIONS = :memory: >/dev/null
 
 include $(LEVEL)/Makefile.config





More information about the llvm-commits mailing list