]> sourceware.org Git - automake.git/commitdiff
* automake.in (%exec_dir_p): Move at the top so that it is visible
authorAkim Demaille <akim@epita.fr>
Tue, 27 Feb 2001 18:00:57 +0000 (18:00 +0000)
committerAkim Demaille <akim@epita.fr>
Tue, 27 Feb 2001 18:00:57 +0000 (18:00 +0000)
to all routines.

ChangeLog
automake.in

index 402bf4a9b3aa37b8e4a6dba311fae39c4250f41d..e89c54ee0c32418922c83c8d621f62b3fc1e5651 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-02-27  Akim Demaille  <akim@epita.fr>
+
+       * automake.in (%exec_dir_p): Move at the top so that it is visible
+       to all routines.
+
 2001-02-27  Pavel Roskin  <proski@gnu.org>
 
        * tests/yaccvpath.test: Prevent automake from looking into ..
index 1293bc6c5a2fcb5defc4082c84a781c7c26957de..5ebbf5817b4467889627aba74e8b7131624bc2c0 100755 (executable)
@@ -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
+  );
 \f
 
 # 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,
This page took 0.048081 seconds and 5 git commands to generate.