diff options
author | Alexandre Duret-Lutz <adl@gnu.org> | 2002-03-05 21:34:15 +0000 |
---|---|---|
committer | Alexandre Duret-Lutz <adl@gnu.org> | 2002-03-05 21:34:15 +0000 |
commit | 1487d51256b32da24c24ea80bd5581001bcea280 (patch) | |
tree | 33cc090e2616ce76722e99928f4b635aaebd5752 /lib/am/header-vars.am | |
parent | e009203c2ae4e78b495e2b2ef2203022db496264 (diff) | |
download | automake-1487d51256b32da24c24ea80bd5581001bcea280.tar.gz |
Fix for PR automake/300:
* tests/pr300-lib.test, tests/pr300-ltlib.test,
tests/pr300-prog.test: New files.
* tests/Makefile.am (TESTS): Add them.
* automake.in (handle_ltlibraries): Strip nobase_ prefix to
compute the directory.
* lib/am/header-vars.am (install_sh_PROGRAM): New variable.
* lib/am/libs.am (%DIR%LIBRARIES_INSTALL): New variable.
(install-%DIR%LIBRARIES): Use it. Honor nobase_.
(uninstall-%DIR%LIBRARIES): Honor nobase_.
* lib/am/ltlibs.am (%DIR%LTLIBRARIES_INSTALL): New variable.
(install-%DIR%LTLIBRARIES): Use it. Honor nobase_.
(uninstall-%DIR%LTLIBRARIES): Honor nobase_.
* lib/am/progs.am (%DIR%PROGRAMS_INSTALL): New variable.
(install-%DIR%PROGRAMS): Use it. Honor nobase_.
(uninstall-%DIR%PROGRAMS): Honor nobase_.
See also the fix for nobase.test on 2001-11-09.
Diffstat (limited to 'lib/am/header-vars.am')
-rw-r--r-- | lib/am/header-vars.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/am/header-vars.am b/lib/am/header-vars.am index aea1311a0..b389d36c5 100644 --- a/lib/am/header-vars.am +++ b/lib/am/header-vars.am @@ -65,6 +65,7 @@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_HEADER = $(INSTALL_DATA) transform = @program_transform_name@ |