diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2003-06-14 13:11:24 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2003-06-14 13:11:24 (GMT) |
commit | bc122625937ab4c8ff6c8d10e835bd17656ec6fd (patch) | |
tree | f3ad78c1e5c1517d2cd7d44c77e22f234c771343 /Makefile.pre.in | |
parent | b8c084e82c7bae771c0197b177f5c32c7e513c74 (diff) | |
download | cpython-bc122625937ab4c8ff6c8d10e835bd17656ec6fd.zip cpython-bc122625937ab4c8ff6c8d10e835bd17656ec6fd.tar.gz cpython-bc122625937ab4c8ff6c8d10e835bd17656ec6fd.tar.bz2 |
Properly bracket variables. Fixes part of #749911.
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 91fdbd8..c6f191c 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\ |