+2007-03-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ * TODO: Kill a couple of outdated items.
+ * tests/exdir3.test: New test.
+ * tests/Makefile.am: Update.
+
2007-01-27 Bruno Haible <bruno@clisp.org>
* doc/automake.texi (Multiple Outputs): Fix the multiple outputs
also defined conditionally). Likewise, installdirs should not
create %DIR% in conditions were no %DIR%_%PRIMARY% is enabled.
-we can't seem to AC_SUBST(pkgdatadir)
-the version from header-vars overrides
-why is that?
-
check should depend on all
from ben elliston
* per-exe flags
** LIBOBJS shouldn't be used when there are per-exe flags (?)
-* Support subdir-objects with fortran
-
* Allow creation of Java .zip/.jar files in natural way
If you are building a compiled Java library, then the .zip/.jar
ought to be made automatically.
* clean up source directory by moving stuff into subdirs
-* consider adding pkglibexecdir, maybe others?
+* consider adding other variables similar to pkglibexecdir?
requests for pkg-dirs with version included
Avoid loops when installing; instead unroll them in automake
--- /dev/null
+#! /bin/sh
+# Copyright (C) 2006 Free Software Foundation, Inc.
+#
+# This file is part of GNU Automake.
+#
+# GNU Automake is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# GNU Automake is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Automake; see the file COPYING. If not, write to
+# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
+
+# Test to make sure pkgdatadir can be overridden via AC_SUBST.
+
+. ./defs || exit 1
+
+set -e
+
+cat >>configure.in <<'EOF'
+AC_SUBST([pkgdatadir], ["FOO"])
+AC_OUTPUT
+EOF
+
+cat > Makefile.am << 'EOF'
+showme:
+ @echo $(pkgdatadir)
+EOF
+
+$ACLOCAL
+$AUTOCONF
+$AUTOMAKE
+./configure
+$MAKE showme | grep FOO