From: Martin v. Löwis Date: Sat, 14 Jun 2003 13:11:24 +0000 (+0000) Subject: Properly bracket variables. Fixes part of #749911. X-Git-Tag: v2.3c1~444 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bc122625937ab4c8ff6c8d10e835bd17656ec6fd;p=thirdparty%2FPython%2Fcpython.git Properly bracket variables. Fixes part of #749911. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 91fdbd8acd32..c6f191cc28d7 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -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\