From dcf9867e57a57ab4aac62cd7336cd69ea52cf26d Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Wed, 17 Oct 2001 17:20:48 +0000 Subject: [PATCH] * tests/Makefile.am (TESTS, XFAIL_TESTS): Add nobase.test. * tests/nobase.test: New file. Based on a bug report from Martin Frydl . --- ChangeLog | 6 ++++++ THANKS | 1 + tests/Makefile.am | 3 ++- tests/Makefile.in | 9 ++++++--- tests/nobase.test | 21 +++++++++++++++++++++ 5 files changed, 36 insertions(+), 4 deletions(-) create mode 100755 tests/nobase.test diff --git a/ChangeLog b/ChangeLog index ac5023cc..2ec53952 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-10-16 Alexandre Duret-Lutz + + * tests/Makefile.am (TESTS, XFAIL_TESTS): Add nobase.test. + * tests/nobase.test: New file. Based on a bug report + from Martin Frydl . + 2001-10-16 Alexandre Duret-Lutz * automake.in (am_install_var): Don't strip nobase_ from $X, do diff --git a/THANKS b/THANKS index 308d9b48..c557d509 100644 --- a/THANKS +++ b/THANKS @@ -96,6 +96,7 @@ Mark Elbrecht snowball3@bigfoot.com Mark Galassi rosalia@nis.lanl.gov Markku Rossi mtr@ngs.fi Markus F.X.J. Oberhumer k3040e4@wildsau.idv-edu.uni-linz.ac.at +Martin Frydl martin@idoox.com Matt Leach mleach@cygnus.com Matthew D. Langston langston@SLAC.Stanford.EDU Matthias Clasen clasen@mathematik.uni-freiburg.de diff --git a/tests/Makefile.am b/tests/Makefile.am index 0ab455b4..22da4473 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to create Makefile.in -XFAIL_TESTS = subdir5.test auxdir2.test cond17.test +XFAIL_TESTS = subdir5.test auxdir2.test cond17.test nobase.test TESTS = \ acinclude.test \ @@ -208,6 +208,7 @@ mdate3.test \ mdate4.test \ mkinst2.test \ mkinstall.test \ +nobase.test \ nodep.test \ nodepcomp.test \ nodist.test \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 3d994a59..146d14a1 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -56,12 +56,14 @@ POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : + +EXEEXT = @EXEEXT@ +OBJEXT = @OBJEXT@ +PATH_SEPARATOR = @PATH_SEPARATOR@ AMTAR = @AMTAR@ AWK = @AWK@ DEPDIR = @DEPDIR@ -EXEEXT = @EXEEXT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PERL = @PERL@ VERSION = @VERSION@ @@ -69,7 +71,7 @@ am__include = @am__include@ am__quote = @am__quote@ install_sh = @install_sh@ -XFAIL_TESTS = subdir5.test auxdir2.test cond17.test +XFAIL_TESTS = subdir5.test auxdir2.test cond17.test nobase.test TESTS = \ acinclude.test \ @@ -277,6 +279,7 @@ mdate3.test \ mdate4.test \ mkinst2.test \ mkinstall.test \ +nobase.test \ nodep.test \ nodepcomp.test \ nodist.test \ diff --git a/tests/nobase.test b/tests/nobase.test new file mode 100755 index 00000000..ce6a8311 --- /dev/null +++ b/tests/nobase.test @@ -0,0 +1,21 @@ +#! /bin/sh +# Test to make sure nobase_*_HEADERS work. + +. $srcdir/defs || exit 1 + +cat > Makefile.am << 'EOF' +foodir = $(prefix)/foo +nobase_foo_HEADERS = bar/baz.h +EOF + +mkdir bar +: > bar/baz.h + +set -e + +$ACLOCAL +$AUTOCONF +$AUTOMAKE -a +./configure --prefix `pwd`/install +make install-data +test -f install/foo/bar/baz.h -- 2.43.5