mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
Merge pull request #288 from oncemoreification/modify-configure
Branch for different aclocal dirs
This commit is contained in:
commit
3e2e55a72c
1 changed files with 8 additions and 1 deletions
9
configure
vendored
9
configure
vendored
|
@ -391,7 +391,14 @@ if [ $CFG_OSTYPE = "apple-darwin" ]
|
||||||
then
|
then
|
||||||
# pkg-config is installed in a different place on mac (via homebrew? not sure)
|
# pkg-config is installed in a different place on mac (via homebrew? not sure)
|
||||||
# and the way to set this seems to be calling aclocal by hand (instead of via autoreconf)
|
# and the way to set this seems to be calling aclocal by hand (instead of via autoreconf)
|
||||||
OSX_PKG_CONFIG_M4_MACROS="-I/usr/share/aclocal -I/usr/local/share/aclocal"
|
if [ -d "/usr/local/share/aclocal" ]
|
||||||
|
then
|
||||||
|
OSX_PKG_CONFIG_M4_MACROS="-I/usr/local/share/aclocal"
|
||||||
|
fi
|
||||||
|
if [ -d "/usr/share/aclocal" ]
|
||||||
|
then
|
||||||
|
OSX_PKG_CONFIG_M4_MACROS="-I/usr/share/aclocal"
|
||||||
|
fi
|
||||||
LIBTOOLIZE=glibtoolize
|
LIBTOOLIZE=glibtoolize
|
||||||
else
|
else
|
||||||
OSX_PKG_CONFIG_M4_MACROS=""
|
OSX_PKG_CONFIG_M4_MACROS=""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue