diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2011-01-15 11:54:54 +0100 |
---|---|---|
committer | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2011-01-15 13:05:36 +0100 |
commit | 63c34882ee4216d688f47d8f357d0a75e87fc521 (patch) | |
tree | 97baad82bdb0662b5736c4cc74d6890955f1a87f | |
parent | 88c5437de865d8d5574d12c1ba6256743987efc0 (diff) | |
download | automake-63c34882ee4216d688f47d8f357d0a75e87fc521.tar.gz |
Fix libobj2.test failure with non-GNU make: define $(AR).
* tests/libobj2.test: Ensure $(AR) is suitably defined.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | tests/libobj2.test | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -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. diff --git a/tests/libobj2.test b/tests/libobj2.test index 913fef9bf..4e95e0ad9 100755 --- a/tests/libobj2.test +++ b/tests/libobj2.test @@ -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 |