From: Martin v. Löwis Date: Sun, 26 Sep 2004 17:26:16 +0000 (+0000) Subject: Remove bogus = from -h option. X-Git-Tag: v2.3.5c1~107 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f477804885448caf8f049be47e7a48713c3ff85a;p=thirdparty%2FPython%2Fcpython.git Remove bogus = from -h option. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 5e23a1e0c987..daa98a0781de 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -345,7 +345,7 @@ $(LIBRARY): $(LIBRARY_OBJS) libpython$(VERSION).so: $(LIBRARY_OBJS) if test $(INSTSONAME) != $(LDLIBRARY); then \ - $(LDSHARED) -Wl,-h=$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \ + $(LDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \ $(LN) -f $(INSTSONAME) $@; \ else\ $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \