This is the mail archive of the java-discuss@sourceware.cygnus.com mailing list for the Java project.


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

libjava/configure.in patch


libgcj.spec.in contains the line:
        *cc1:  @DIVIDESPEC@ %(cc1orig)
This means that that configure needs to substitute for it
whene generating libgcj.spec.  However, there is nothing
in configure.in to make configure do the substitution.
The following patch takes care of it:

        * configure.in:  Also do AC_SUBST for DIVIDESPEC. 

Index: configure.in
===================================================================
RCS file: /cvs/java/libgcj/libjava/configure.in,v
retrieving revision 1.16
diff -u -r1.16 configure.in
--- configure.in        1999/08/01 23:39:53     1.16
+++ configure.in        1999/08/05 01:19:44
@@ -478,6 +478,7 @@
 AC_SUBST(ZLIBS)
 AC_SUBST(ZDEPS)
 AC_SUBST(ZINCS)
+AC_SUBST(DIVIDESPEC)

 AM_CONDITIONAL(CANADIAN, test "$CANADIAN" = yes)
 AM_CONDITIONAL(NULL_TARGET, test "$NULL_TARGET" = yes)
-- 
	--Per Bothner
bothner@pacbell.net  per@bothner.com   http://home.pacbell.net/bothner/

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