Properly bracket variables. Fixes part of #749911.
This commit is contained in:
parent
b8c084e82c
commit
bc12262593
|
@ -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\
|
||||
|
|
Loading…
Reference in New Issue