Properly bracket variables. Fixes part of #749911.

This commit is contained in:
Martin v. Löwis 2003-06-14 13:11:24 +00:00
parent b8c084e82c
commit bc12262593
1 changed files with 1 additions and 1 deletions

View 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\