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

View file

@ -344,7 +344,7 @@ $(LIBRARY): $(LIBRARY_OBJS)
$(RANLIB) $@ $(RANLIB) $@
libpython$(VERSION).so: $(LIBRARY_OBJS) 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); \ $(LDSHARED) -Wl,-soname=$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
$(LN) -f $(INSTSONAME) $@; \ $(LN) -f $(INSTSONAME) $@; \
else\ else\