Module Name: src
Committed By: mbalmer
Date: Sun Oct 16 00:45:54 UTC 2011
Modified Files:
src/lib/lua/sqlite: Makefile
Log Message:
Fix dependency.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/lua/sqlite/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/lua/sqlite/Makefile
diff -u src/lib/lua/sqlite/Makefile:1.1 src/lib/lua/sqlite/Makefile:1.2
--- src/lib/lua/sqlite/Makefile:1.1 Sat Oct 15 10:26:30 2011
+++ src/lib/lua/sqlite/Makefile Sun Oct 16 00:45:54 2011
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.1 2011/10/15 10:26:30 mbalmer Exp $
+# $NetBSD: Makefile,v 1.2 2011/10/16 00:45:54 mbalmer Exp $
LUA_MODULES= sqlite
LUA_SRCS.sqlite= sqlite.c
-LDADD+= -lsqlite3
-
+LUA_DPLIBS+= sqlite3 \
+ ${.CURDIR}/../../../external/public-domain/sqlite/lib
.include <bsd.lua.mk>