[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[minion-cvs] Fix bug with OPENSSL_SRC option



Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv21114

Modified Files:
	setup.py 
Log Message:
Fix bug with OPENSSL_SRC option

Index: setup.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/setup.py,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- setup.py	30 May 2003 03:07:56 -0000	1.55
+++ setup.py	30 May 2003 03:53:22 -0000	1.56
@@ -143,7 +143,8 @@
                       os.path.join(openssl_src, "libcrypto.a") ]
         LIBRARY_DIRS=[]
         LIBRARIES=[]
-        v = getOpenSSLVersion("./contrib/openssl/include/openssl/opensslv.h")
+        v = getOpenSSLVersion(os.path.join(openssl_src,
+                                           "include", "openssl", "opensslv.h"))
         if not v or v < MIN_OPENSSL_VERSION:
             print BAD_OPENSSL_IN_CONTRIB
             sys.exit(1)