util-src/Makefile: Stop linking dynamic libraries to Lua, it isn't necessary as symbols are exported from the Lua binary (thanks deryni)

Thu, 08 Jul 2010 18:59:17 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Thu, 08 Jul 2010 18:59:17 +0100
changeset 3334
73f078caf99d
parent 3333
e6bb6bc4cfbe
child 3335
f13306ce3417

util-src/Makefile: Stop linking dynamic libraries to Lua, it isn't necessary as symbols are exported from the Lua binary (thanks deryni)

util-src/Makefile file | annotate | diff | comparison | revisions
--- a/util-src/Makefile	Thu Jul 08 14:47:14 2010 +0100
+++ b/util-src/Makefile	Thu Jul 08 18:59:17 2010 +0100
@@ -16,7 +16,7 @@
 
 .o.so:
 	MACOSX_DEPLOYMENT_TARGET="10.3"; export MACOSX_DEPLOYMENT_TARGET;
-	$(LD) $(LDFLAGS) -o $@ $< -L$(LUA_LIBDIR) -llua$(LUA_SUFFIX) -lidn -lcrypto
+	$(LD) $(LDFLAGS) -o $@ $< -lidn -lcrypto
 
 all: encodings.so hashes.so pposix.so signal.so
 

mercurial