[Python-checkins] python/dist/src Makefile.pre.in,1.130,1.131

loewis@users.sourceforge.net loewis@users.sourceforge.net
Sat, 14 Jun 2003 06:11:26 -0700


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1:/tmp/cvs-serv29503

Modified Files:
	Makefile.pre.in 
Log Message:
Properly bracket variables. Fixes part of #749911.


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.130
retrieving revision 1.131
diff -C2 -d -r1.130 -r1.131
*** Makefile.pre.in	13 Jun 2003 20:49:55 -0000	1.130
--- Makefile.pre.in	14 Jun 2003 13:11:24 -0000	1.131
***************
*** 345,349 ****
  
  libpython$(VERSION).so: $(LIBRARY_OBJS)
! 	if test $INSTSONAME != $LDLIBRARY; then \
  		$(LDSHARED) -Wl,-soname=$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
  		$(LN) -f $(INSTSONAME) $@; \
--- 345,349 ----
  
  libpython$(VERSION).so: $(LIBRARY_OBJS)
! 	if test $(INSTSONAME) != $(LDLIBRARY); then \
  		$(LDSHARED) -Wl,-soname=$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
  		$(LN) -f $(INSTSONAME) $@; \