diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-07-30 20:19:58 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-07-30 20:19:58 +0000 |
commit | 20a1520282ae8bcd13b352e29b448f4d8639a55e (patch) | |
tree | 79c2d23af0852b392090ea754ee24ffcdc48e00d /configure.in | |
parent | a709610fa22953f83695342a8c12840d606ae336 (diff) | |
download | cpython-20a1520282ae8bcd13b352e29b448f4d8639a55e.tar.gz |
Shared libraries also work on GNU/Hurd. Suggested by Matthias Klose.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 7e82ca55f8..5ea8c3ece5 100644 --- a/configure.in +++ b/configure.in @@ -383,7 +383,7 @@ if test $enable_shared = "yes"; then BLDLIBRARY='-Wl,-rpath,$(LIBDIR) -L. -lpython$(VERSION)' RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH ;; - Linux*) + Linux*|GNU*) LDLIBRARY='libpython$(VERSION).so' BLDLIBRARY='-L. -lpython$(VERSION)' RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH |