commit | bc122625937ab4c8ff6c8d10e835bd17656ec6fd | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Sat Jun 14 13:11:24 2003 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Sat Jun 14 13:11:24 2003 +0000 |
tree | f3ad78c1e5c1517d2cd7d44c77e22f234c771343 | |
parent | b8c084e82c7bae771c0197b177f5c32c7e513c74 [diff] |
Properly bracket variables. Fixes part of #749911.
diff --git a/Makefile.pre.in b/Makefile.pre.in index 91fdbd8..c6f191c 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in
@@ -344,7 +344,7 @@ $(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\