This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Bootstrap failing on sparc-sun-solaris2.6


Bah, stupid of me. This change to libiberty/Makefile.in causes
the problem:

2000-05-15  David Edelsohn  <edelsohn@gnu.org>

	* Makefile.in: Change "pic" to depend on $(PICFLAG), not
	on $(enable_shared).


Would changing config/mh-sparcpic (and possibly config/mt-sparcpic)
to use single instead of double quotes be O.K.?

-- 
Branko Čibej                 <branko.cibej@hermes.si>
HERMES SoftLab, Litijska 51, 1000 Ljubljana, Slovenia
voice: (+386 1) 586 53 49     fax: (+386 1) 586 52 70


2000-05-19  Branko Cibej  <branko.cibej@hermes.si>

	* mh-sparcpic: Use single instead of double quotes.
	* mt-sparcpic: Likewise.


Index: config/mh-sparcpic
===================================================================
RCS file: /cvs/gcc/egcs/config/mh-sparcpic,v
retrieving revision 1.2
diff -u -p -r1.2 mh-sparcpic
--- mh-sparcpic 1998/02/06 00:33:03 1.2
+++ mh-sparcpic 2000/05/19 07:35:57
@@ -1 +1 @@
-PICFLAG=`case "${LIBCFLAGS} ${LIBCXXFLAGS}" in *-fpic* ) echo -fpic ;; * ) echo -fPIC ;; esac`
+PICFLAG=`case '${LIBCFLAGS} ${LIBCXXFLAGS}' in *-fpic* ) echo -fpic ;; * ) echo -fPIC ;; esac`
Index: config/mt-sparcpic
===================================================================
RCS file: /cvs/gcc/egcs/config/mt-sparcpic,v
retrieving revision 1.2
diff -u -p -r1.2 mt-sparcpic
--- mt-sparcpic 1998/02/06 00:33:04 1.2
+++ mt-sparcpic 2000/05/19 07:35:57
@@ -1 +1 @@
-PICFLAG_FOR_TARGET=`case "${LIBCFLAGS} ${LIBCXXFLAGS}" in *-fpic* ) echo -fpic ;; * ) echo -fPIC ;; esac`
+PICFLAG_FOR_TARGET=`case '${LIBCFLAGS} ${LIBCXXFLAGS}' in *-fpic* ) echo -fpic ;; * ) echo -fPIC ;; esac`

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]