aboutsummaryrefslogtreecommitdiff
path: root/pow
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2010-11-22 13:08:47 +0000
committerRob Austein <sra@hactrn.net>2010-11-22 13:08:47 +0000
commit61b9d251a7b183a526fbd749a6969f110be9c7b0 (patch)
treeefe789b618630d6516c0fbd1bbe01b7dbee4e2db /pow
parent2c4a0322ab62542e8554ce5bdfe83272cdd1f0a5 (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.in4
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