mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 23:10:58 +00:00
regen: look for glibtoolize also
macos uses the g prefix to avoid conflicting with a system tool called libtool. Change-Id: I867f5c4aa7e7c21bf47087b05a58299e11a5b70a Reviewed-on: http://gerrit.openafs.org/8049 Reviewed-by: Derrick Brashear <shadow@your-file-system.com> Tested-by: Derrick Brashear <shadow@your-file-system.com>
This commit is contained in:
parent
ed0624c32e
commit
ef7cc7e3f5
9
regen.sh
9
regen.sh
@ -17,7 +17,14 @@ done
|
|||||||
echo "Updating configuration..."
|
echo "Updating configuration..."
|
||||||
|
|
||||||
echo "Running libtoolize"
|
echo "Running libtoolize"
|
||||||
libtoolize -c -f
|
if which libtoolize > /dev/null 2>&1; then
|
||||||
|
libtoolize -c -f
|
||||||
|
elif which glibtoolize > /dev/null 2>&1; then
|
||||||
|
glibtoolize -c -f
|
||||||
|
else
|
||||||
|
echo "No libtoolize found on your system (looked for libtoolize & glibtoolize)"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
echo "Running aclocal"
|
echo "Running aclocal"
|
||||||
if which aclocal > /dev/null 2>&1; then
|
if which aclocal > /dev/null 2>&1; then
|
||||||
|
Loading…
Reference in New Issue
Block a user