Skip to content
Extraits de code Groupes Projets
Valider ba72c492 rédigé par diosmosis's avatar diosmosis
Parcourir les fichiers

Trimming output of build-xhprof.sh script.

parent b09061af
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
#!/bin/bash
if ! type phpize 2> /dev/null; then
if ! type phpize &> /dev/null; then
echo "phpize missing, skipping build"
echo "If you installed PHP via Aptitude, you can install phpize w/ 'sudo apt-get install php5-dev'"
exit
fi
if ! type make 2> /dev/null; then
if ! type make &> /dev/null; then
echo "make missing, skipping build"
exit
fi
......@@ -17,19 +17,16 @@ cd vendor/facebook/xhprof/extension
echo "Building xhprof..."
echo "Running phpize..."
if ! phpize &> ../../../../tmp/xhprof-logs/phpize.log; then
echo "Fatal error: phpize failed! View tmp/xhprof-logs/phpize.log for more info."
exit 1
fi
echo "Running configure script..."
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
fi
echo "Building..."
if ! make &> ../../../../tmp/xhprof-logs/make.log; then
echo "Fatal error: could not build extension (make failed)! View tmp/xhprof-logs/make.log for more info."
exit 3
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter