]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
Fix libobj2.test failure with non-GNU make: define $(AR).
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 15 Jan 2011 10:54:54 +0000 (11:54 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 15 Jan 2011 12:05:36 +0000 (13:05 +0100)
* tests/libobj2.test: Ensure $(AR) is suitably defined.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
tests/libobj2.test

index 59635e2005bd7c7b8179c8b94b36bc55d2283a79..609b0afeb813cbff712b300b697de0e597750981 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-01-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       Fix libobj2.test failure with non-GNU make: define $(AR).
+       * tests/libobj2.test: Ensure $(AR) is suitably defined.
+
 2010-12-09  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        Extend tests on AC_LIBOBJ and friends.
index 913fef9bf84cb6019a28cab0b59aaef414c8b456..4e95e0ad909a61c727745e95cc3e099833889a94 100755 (executable)
@@ -26,6 +26,7 @@ cat >> configure.in << 'END'
 AC_CONFIG_FILES([subdir/Makefile])
 AC_PROG_CC
 AC_PROG_RANLIB
+AC_CHECK_TOOLS([AR], [ar])
 AC_LIBOBJ([fsusage])
 AC_OUTPUT
 END