Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorPhilip Taffner <philip.taffner@bluegfx.de>2014-09-26 13:44:17 +0400
committerPhilip Taffner <philip.taffner@bluegfx.de>2014-09-26 13:44:17 +0400
commit45ee23a6b812c249ce239f620f35c5b35d42493d (patch)
treeb4c9519039819acdc4b5006fc525f73088a1fd01 /misc
parent163d7535f4c850418a95c5139a162e1c002627b6 (diff)
Fix xhprof build in Gentoo.
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/composer/build-xhprof.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/misc/composer/build-xhprof.sh b/misc/composer/build-xhprof.sh
index 517d228d0b..63178b87ef 100755
--- a/misc/composer/build-xhprof.sh
+++ b/misc/composer/build-xhprof.sh
@@ -27,6 +27,16 @@ if ! phpize &> ../../../../tmp/xhprof-logs/phpize.log; then
exit 1
fi
+if ! aclocal &> ../../../../tmp/xhprof-logs/aclocal.log; then
+ echo "Fatal error: aclocal failed! View tmp/xhprof-logs/aclocal.log for more info."
+ exit 1
+fi
+
+if ! autoconf &> ../../../../tmp/xhprof-logs/autoconf.log; then
+ echo "Fatal error: autoconf failed! View tmp/xhprof-logs/autoconf.log for more info."
+ exit 1
+fi
+
if ! ./configure &> ../../../../tmp/xhprof-logs/configure.log; then
echo "Fatal error: configure script failed! View tmp/xhprof-logs/configure.log for more info."
exit 2