diff options
author | Alexandre Duret-Lutz <adl@gnu.org> | 2002-05-24 10:36:20 +0000 |
---|---|---|
committer | Alexandre Duret-Lutz <adl@gnu.org> | 2002-05-24 10:36:20 +0000 |
commit | 5117f01d6c6fcd2171562c95e4d103a345d4c25a (patch) | |
tree | dc236036bed682ab70027e438b4358fbf4496f18 /m4/depend.m4 | |
parent | b5badfde2a91988020fc01dce1060653aaa1d97b (diff) | |
download | automake-5117f01d6c6fcd2171562c95e4d103a345d4c25a.tar.gz |
For PR automake/323:
* m4/depend.m4: Missing comma.
* tests/gcj4.test: New file.
* tests/Makefile.am (TESTS): Add gcj4.test.
Reported by David Pashley.
Diffstat (limited to 'm4/depend.m4')
-rw-r--r-- | m4/depend.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/depend.m4 b/m4/depend.m4 index c631815ef..619c51d10 100644 --- a/m4/depend.m4 +++ b/m4/depend.m4 @@ -44,7 +44,7 @@ AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], - [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'] + [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) |