diff options
author | Alexandre Duret-Lutz <adl@gnu.org> | 2002-07-08 19:41:24 +0000 |
---|---|---|
committer | Alexandre Duret-Lutz <adl@gnu.org> | 2002-07-08 19:41:24 +0000 |
commit | f03fe6eaf6aa3d1213a82c69ee69dcb2ba20d657 (patch) | |
tree | ffa25ebba8716c1f5b89170a35ac570677c2de3d /lib/am/libs.am | |
parent | 0e513ff27e38b02864a75add2124d076e1d3bb18 (diff) | |
download | automake-f03fe6eaf6aa3d1213a82c69ee69dcb2ba20d657.tar.gz |
Fix for PR automake/291:
* automake.in (macro_define): Catch variable names starting
with `_'.
(handle_installdirs): Rename _am_installdirs to am__installdirs.
* lib/am/data.am, lib/am/install.am, lib/am/libs.am,
lib/am/lisp.am, lib/am/ltlibs.am, lib/am/mans.am,
lib/am/progs.am, lib/am/python.am, lib/am/scripts.am,
lib/am/texinfos.am: Likewise.
* tests/canon5.test: Use -Wno-portability.
* tests/vars2.test: New file.
* tests/Makefile.am (TESTS): Add vars2.test.
Diffstat (limited to 'lib/am/libs.am')
-rw-r--r-- | lib/am/libs.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/am/libs.am b/lib/am/libs.am index 906d5e5ee..ba7fd53cb 100644 --- a/lib/am/libs.am +++ b/lib/am/libs.am @@ -32,7 +32,7 @@ endif %?FIRST% ## ------------ ## if %?INSTALL% -_am_installdirs += $(DESTDIR)$(%NDIR%dir) +am__installdirs += $(DESTDIR)$(%NDIR%dir) ?BASE?%DIR%LIBRARIES_INSTALL = $(INSTALL_DATA) ?!BASE?%DIR%LIBRARIES_INSTALL = $(install_sh_DATA) ?EXEC?.PHONY install-exec-am: install-%DIR%LIBRARIES |