diff options
author | Georg Brandl <georg@python.org> | 2006-06-08 12:54:13 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-06-08 12:54:13 (GMT) |
commit | 66a0dbb57662b1fa28b632f3cc0203e886c8a9ac (patch) | |
tree | 629fd2eaa64f0c82430b4d54c925cc00fc126e28 /Makefile.pre.in | |
parent | 22ccbbc4ecc410f5bca7ffc31c56d4badc2d2772 (diff) | |
download | cpython-66a0dbb57662b1fa28b632f3cc0203e886c8a9ac.zip cpython-66a0dbb57662b1fa28b632f3cc0203e886c8a9ac.tar.gz cpython-66a0dbb57662b1fa28b632f3cc0203e886c8a9ac.tar.bz2 |
Bug #1502728: Correctly link against librt library on HP-UX.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index e63066ce..cbc88b6 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -369,7 +369,7 @@ libpython$(VERSION).so: $(LIBRARY_OBJS) fi libpython$(VERSION).sl: $(LIBRARY_OBJS) - $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(LIBC) $(LIBM) + $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary # minimal framework (not including the Lib directory and such) in the current |