From: Akim Demaille Date: Tue, 27 Feb 2001 18:00:57 +0000 (+0000) Subject: * automake.in (%exec_dir_p): Move at the top so that it is visible X-Git-Tag: handle-languages~204 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=7f23ad405f382931ba17f00582a54272ecc32101;p=automake.git * automake.in (%exec_dir_p): Move at the top so that it is visible to all routines. --- diff --git a/ChangeLog b/ChangeLog index 402bf4a9..e89c54ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-02-27 Akim Demaille + + * automake.in (%exec_dir_p): Move at the top so that it is visible + to all routines. + 2001-02-27 Pavel Roskin * tests/yaccvpath.test: Prevent automake from looking into .. diff --git a/automake.in b/automake.in index 1293bc6c..5ebbf581 100755 --- a/automake.in +++ b/automake.in @@ -87,6 +87,24 @@ my $LANG_IGNORE = 0; my $LANG_PROCESS = 1; my $LANG_SUBDIR = 2; +# Directories installed during 'install-exec' phase. +my %exec_dir_p = + ( + 'bin' => 1, + 'sbin' => 1, + 'libexec' => 1, + 'data' => 0, + 'sysconf' => 1, + 'localstate' => 1, + 'lib' => 1, + 'info' => 0, + 'man' => 0, + 'include' => 0, + 'oldinclude' => 0, + 'pkgdata' => 0, + 'pkglib' => 1, + 'pkginclude' => 0 + ); # Variables global to entire run. @@ -6814,25 +6832,6 @@ sub am_primary_prefixes return %valid; } -# Directories installed during 'install-exec' phase. -my %exec_dir_p = - ( - 'bin' => 1, - 'sbin' => 1, - 'libexec' => 1, - 'data' => 0, - 'sysconf' => 1, - 'localstate' => 1, - 'lib' => 1, - 'info' => 0, - 'man' => 0, - 'include' => 0, - 'oldinclude' => 0, - 'pkgdata' => 0, - 'pkglib' => 1, - 'pkginclude' => 0 - ); - # Handle `where_HOW' variable magic. Does all lookups, generates # install code, and possibly generates code to define the primary # variable. The first argument is the name of the .am file to munge,