diff options
author | Tom Tromey <tromey@redhat.com> | 1996-09-05 16:19:38 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1996-09-05 16:19:38 +0000 |
commit | 771349c4cf555a48f2d595f04bcee2cd9031d2b7 (patch) | |
tree | 8ce658101d31e5f7bbedef7c16cfd6599999a9cf /aclocal.in | |
parent | 86d5f27985a1bac7e74f225893938d78259300ba (diff) | |
download | automake-771349c4cf555a48f2d595f04bcee2cd9031d2b7.tar.gz |
More cleanups for dependency handling
Diffstat (limited to 'aclocal.in')
-rw-r--r-- | aclocal.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/aclocal.in b/aclocal.in index bcee14809..3ce839cb3 100644 --- a/aclocal.in +++ b/aclocal.in @@ -11,7 +11,8 @@ eval 'exec @PERL@ -S $0 ${1+"$@"}' $VERSION = "@VERSION@"; $PACKAGE = "@PACKAGE@"; $prefix = "@prefix@"; -$acdir = "@datadir@/@PACKAGE@"; +# Note that this isn't pkgdatadir, but a separate directory. +$acdir = "@datadir@/aclocal"; # Some globals. @@ -82,7 +83,9 @@ sub usage --help print this help, then exit --output=FILE put output in FILE (default aclocal.m4) --verbose don't be silent - --version print version number, then exit\n"; + --version print version number, then exit + +Report bugs to <bug-gnu-utils\@prep.ai.mit.edu>\n"; exit $status; } |