]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Properly bracket variables. Fixes part of #749911.
authorMartin v. Löwis <martin@v.loewis.de>
Sat, 14 Jun 2003 13:11:24 +0000 (13:11 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sat, 14 Jun 2003 13:11:24 +0000 (13:11 +0000)
Makefile.pre.in

index 91fdbd8acd321b04563c53513e3774d2d2cd67f5..c6f191cc28d7e93ac50dafec37d0249b8a4aa73e 100644 (file)
@@ -344,7 +344,7 @@ $(LIBRARY): $(LIBRARY_OBJS)
        $(RANLIB) $@
 
 libpython$(VERSION).so: $(LIBRARY_OBJS)
-       if test $INSTSONAME != $LDLIBRARY; then \
+       if test $(INSTSONAME) != $(LDLIBRARY); then \
                $(LDSHARED) -Wl,-soname=$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
                $(LN) -f $(INSTSONAME) $@; \
        else\