diff options
author | Rob Austein <sra@hactrn.net> | 2010-11-22 13:08:47 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-11-22 13:08:47 +0000 |
commit | 61b9d251a7b183a526fbd749a6969f110be9c7b0 (patch) | |
tree | efe789b618630d6516c0fbd1bbe01b7dbee4e2db /pow | |
parent | 2c4a0322ab62542e8554ce5bdfe83272cdd1f0a5 (diff) |
Tweak to work on FreeBSD, now have to retest other platforms
svn path=/pow/pywrap/Makefile.in; revision=3559
Diffstat (limited to 'pow')
-rw-r--r-- | pow/pywrap/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pow/pywrap/Makefile.in b/pow/pywrap/Makefile.in index 8370451a..b1969a05 100644 --- a/pow/pywrap/Makefile.in +++ b/pow/pywrap/Makefile.in @@ -3,12 +3,12 @@ OPENSSL_BUILD_DIRECTORY = @abs_top_builddir@/openssl/openssl CC=gcc CFLAGS=`python-config --cflags` LDFLAGS=-Wl,-rpath,$(OPENSSL_BUILD_DIRECTORY) -L$(OPENSSL_BUILD_DIRECTORY) -LIBS=-lcrypto -lssl `python-config --libs` +LIBS=-lcrypto -lssl `python-config --ldflags` all: python python: python.o - $(CC) $(LDFLAGS) -o $@ $< $(LIBS) + $(CC) $(LDFLAGS) -o $@ $? $(LIBS) clean: rm -f *.o python |