This is the mail archive of the gcc-patches@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]
Other format: [Raw text]

[PATCH] libjava: Fix configure script (ZIP, GCJH)


Either there is a very funny shell out there, or this change wasn't tested 
properly.  Variable assignments in shell scripts must not have white space 
around the '=' sign.

Committed as obvious.

R.

2004-07-17  Richard Earnshaw  <rearnsha@arm.com>

	* configure.in(ZIP, GCJH): Remove white space around '=' in variable
	assignment.
	* configure: Regenerated.


Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/libjava/configure.in,v
retrieving revision 1.193
retrieving revision 1.194
diff -p -p -r1.193 -r1.194
*** configure.in	16 Jul 2004 21:17:16 -0000	1.193
--- configure.in	16 Jul 2004 23:42:19 -0000	1.194
*************** fi
*** 1089,1096 ****
  case "${which_gcj}" in
     built)
        GCJ="$built_gcc_dir/gcj -B`${PWDCMD-pwd}`/ -B$built_gcc_dir/"
!       GCJH = '$(MULTIBUILDTOP)../$(COMPPATH)/gcc/gcjh'
!       ZIP = '$(MULTIBUILDTOP)../$(COMPPATH)/fastjar/jar'
     ;;
     cross)
        if test "x${with_newlib}" = "xyes"; then
--- 1089,1096 ----
  case "${which_gcj}" in
     built)
        GCJ="$built_gcc_dir/gcj -B`${PWDCMD-pwd}`/ -B$built_gcc_dir/"
!       GCJH='$(MULTIBUILDTOP)../$(COMPPATH)/gcc/gcjh'
!       ZIP='$(MULTIBUILDTOP)../$(COMPPATH)/fastjar/jar'
     ;;
     cross)
        if test "x${with_newlib}" = "xyes"; then
*************** case "${which_gcj}" in
*** 1100,1114 ****
        else
           GCJ="${target_noncanonical}-gcj -B`${PWDCMD-pwd}`/"
        fi
!       ZIP = jar
!       GCJH = '$(target_noncanonical)-gcjh'
     ;;
     path)
        GCJ="gcj -B`${PWDCMD-pwd}`/"
        ## In this case, gcj is found outside the build tree.  However, zip is
        ## found in the build tree.
!       ZIP = '$(MULTIBUILDTOP)../$(COMPPATH)/fastjar/jar'
!       GCJH = gcjh
     ;;
  esac
  
--- 1100,1114 ----
        else
           GCJ="${target_noncanonical}-gcj -B`${PWDCMD-pwd}`/"
        fi
!       ZIP=jar
!       GCJH='$(target_noncanonical)-gcjh'
     ;;
     path)
        GCJ="gcj -B`${PWDCMD-pwd}`/"
        ## In this case, gcj is found outside the build tree.  However, zip is
        ## found in the build tree.
!       ZIP='$(MULTIBUILDTOP)../$(COMPPATH)/fastjar/jar'
!       GCJH=gcjh
     ;;
  esac
  

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