Skip to content

Commit 9ef0f4d

Browse files
Fix / quieten make build messages
1 parent d06dc3f commit 9ef0f4d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.dev-tools/install-apache-2.2.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,18 @@ cd zlib-1.2.11/
6464
./configure --prefix=/usr/local
6565
#make -s
6666
echo "make zlib"
67-
make >/dev/null || make
67+
make &> zlib.log
6868
echo "make install zlib"
69-
make >/dev/null || sudo make -s install
69+
sudo make -s install &> zlib.log
7070

7171
wget https://github.com/mitchellkrogza/apache-ultimate-bad-bot-blocker/raw/master/.dev-tools/_apache_builds/httpd-2.2.25.tar.gz
7272
tar -xvf httpd-2.2.25.tar.gz > /dev/null
7373
cd httpd-2.2.25/
7474
./configure --prefix=/usr/local/apache2 --enable-mods-shared=all --enable-deflate --enable-proxy --enable-proxy-balancer --enable-proxy-http
7575
echo "make apache 2.2.25"
76-
make >/dev/null || make
76+
make &> apache2build.log
7777
echo "make install apache 2.2.25"
78-
make >/dev/null || sudo make -s install
78+
sudo make -s install &> apache2build.log
7979

8080
sudo /usr/local/apache2/bin/apachectl start
8181

0 commit comments

Comments
 (0)