diff options
author | Gary V. Vaughan <gary@gnu.org> | 2003-11-07 14:04:16 +0000 |
---|---|---|
committer | Gary V. Vaughan <gary@gnu.org> | 2003-11-07 14:04:16 +0000 |
commit | 41a42100c6a8c40342cafbfe205fa6b399b78153 (patch) | |
tree | e8ea94160a3dc7f2f4f63b79b4490e01fc77d634 /libtoolize.in | |
parent | b9ddab90b74bf709d06e5d8636e310292882af51 (diff) | |
download | libtool-41a42100c6a8c40342cafbfe205fa6b399b78153.tar.gz |
* m4/libtoolize.in (func_scan_files): If libtoolize is run before
automake has created install-sh and configure.ac does not mention
AC_CONFIG_AUX_DIR, fall back to the current directory for auxdir.
Diffstat (limited to 'libtoolize.in')
-rw-r--r-- | libtoolize.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libtoolize.in b/libtoolize.in index 66872c14..ade28331 100644 --- a/libtoolize.in +++ b/libtoolize.in @@ -336,6 +336,9 @@ func_scan_files () done fi + # Just use the current directory if all else fails. + test -n "$auxdir" || auxdir=. + # ------------------------------ # # Find local m4 macro directory. # |