]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
tests: Test for AC_CONFIG_AUX_DIR usage in autopoint test
authorDaiki Ueno <ueno@gnu.org>
Sun, 13 Jul 2014 20:40:18 +0000 (05:40 +0900)
committerDaiki Ueno <ueno@gnu.org>
Sun, 13 Jul 2014 20:43:39 +0000 (05:43 +0900)
* autopoint-2: Check if build-aux/config.rpath is created if
AC_CONFIG_AUX_DIR([build-aux]) is called.

gettext-tools/tests/ChangeLog
gettext-tools/tests/autopoint-2

index 86ee15d8acacc13055243b4af26736565b036d6d..017ea44d107357696cf8392db81bf333495995f1 100644 (file)
@@ -1,3 +1,9 @@
+2014-07-14  Daiki Ueno  <ueno@gnu.org>
+
+       tests: Test for AC_CONFIG_AUX_DIR usage in autopoint test
+       * autopoint-2: Check if build-aux/config.rpath is created if
+       AC_CONFIG_AUX_DIR([build-aux]) is called.
+
 2014-07-14  Daiki Ueno  <ueno@gnu.org>
 
        tests: Test empty literals in C test
index 9d3ea3549c5ceed7810d527bea6a7b1b7a72ff6e..b0dbf2337d9c1ac8ac7fe00c621d28b1e53c9ac7 100755 (executable)
@@ -25,6 +25,7 @@ export gettext_datadir
 cat <<EOF >configure.ac
 AC_INIT
 AC_CONFIG_SRCDIR(hello.c)
+AC_CONFIG_AUX_DIR([build-aux])
 
 AC_PROG_CC
 AM_GNU_GETTEXT([external])
@@ -40,9 +41,11 @@ $gettext_datadir/autopoint >/dev/null 2>/dev/null || exit 1
 test ! -d intl || exit 1
 test -d m4 || exit 1
 test -d po || exit 1
+test -d build-aux || exit 1
 
 test -f m4/po.m4 || exit 1
 test -f po/Makefile.in.in || exit 1
+test -f build-aux/config.rpath || exit 1
 
 rm -fr m4 po