diff options
author | Richard Earnshaw <rearnsha@arm.com> | 2004-07-16 23:42:19 +0000 |
---|---|---|
committer | Richard Earnshaw <rearnsha@gcc.gnu.org> | 2004-07-16 23:42:19 +0000 |
commit | c0f43fa72eb8099ce050ce3e4ca9e6a6c0cf21a7 (patch) | |
tree | fd7d9b1c47450f07c289020e058ab7c95ddca082 /libjava/configure | |
parent | 77c9db7751b8239833f152701b7cde02569859e0 (diff) | |
download | gcc-c0f43fa72eb8099ce050ce3e4ca9e6a6c0cf21a7.zip gcc-c0f43fa72eb8099ce050ce3e4ca9e6a6c0cf21a7.tar.gz gcc-c0f43fa72eb8099ce050ce3e4ca9e6a6c0cf21a7.tar.bz2 |
configure.in (ZIP, GCJH): Remove white space around '=' in variable assignment.
* configure.in(ZIP, GCJH): Remove white space around '=' in variable
assignment.
* configure: Regenerated.
From-SVN: r84843
Diffstat (limited to 'libjava/configure')
-rwxr-xr-x | libjava/configure | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libjava/configure b/libjava/configure index 97d2345..0a6368c 100755 --- a/libjava/configure +++ b/libjava/configure @@ -7183,8 +7183,8 @@ fi 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' + GCJH='$(MULTIBUILDTOP)../$(COMPPATH)/gcc/gcjh' + ZIP='$(MULTIBUILDTOP)../$(COMPPATH)/fastjar/jar' ;; cross) if test "x${with_newlib}" = "xyes"; then @@ -7194,15 +7194,15 @@ case "${which_gcj}" in else GCJ="${target_noncanonical}-gcj -B`${PWDCMD-pwd}`/" fi - ZIP = jar - GCJH = '$(target_noncanonical)-gcjh' + 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 + ZIP='$(MULTIBUILDTOP)../$(COMPPATH)/fastjar/jar' + GCJH=gcjh ;; esac |