Skip to content
Snippets Groups Projects
Commit 5766e996 authored by Boris Kolpackov's avatar Boris Kolpackov
Browse files

Check if glibtoolize exist. Otherwise call libtoolize.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@830157 13f79535-47bb-0310-9956-ffa450edef68
parent fd9be8a9
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
set -x set -x
rm -f config.cache rm -f config.cache
glibtoolize --copy --force
type -p glibtoolize 1>/dev/null 2>&1
if test "$?" = "0"; then
glibtoolize --copy --force
else
libtoolize --copy --force
fi
aclocal -I m4 aclocal -I m4
autoheader autoheader
automake -a -c -f automake -a -c -f
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment