mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-16 19:40:57 +01:00
fix #16: look for glibtoolize on macosx
This commit is contained in:
@@ -72,9 +72,12 @@ fi
|
|||||||
|
|
||||||
if test "$mode" = "config"; then
|
if test "$mode" = "config"; then
|
||||||
mkdir -p ./config
|
mkdir -p ./config
|
||||||
|
|
||||||
|
lt=libtoolize
|
||||||
|
case `uname` in Darwin*) lt=glibtoolize;; esac
|
||||||
|
|
||||||
if ! command -v libtoolize >/dev/null 2>&1; then
|
if ! command -v $lt >/dev/null 2>&1 ; then
|
||||||
echo "could not find libtool." 1>&2
|
echo "could not find $lt." 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user