Browse Source

Coz spaces -> tabs is hard.

dettanym 4 years ago
parent
commit
6090daf051
1 changed files with 5 additions and 6 deletions
  1. 5 6
      apacheMakefile

+ 5 - 6
apacheMakefile

@@ -1,12 +1,11 @@
 PHP_DIR = php-7.0.7
 $(PHP_DIR): $(PHP_DIR).tar.gz
-    tar -xmzf $<
+	tar -xmzf $<
 
 $(INSTALL_DIR)/modules/libphp7.so: $(PHP_DIR) $(INSTALL_DIR)/bin/apxs
-    cd $< && ./configure --prefix=$(abspath $(INSTALL_DIR)) --with-apxs2=$(abspath $(INSTALL_DIR)/bin/apxs) \
-    --disable-cgi --disable-cli --disable-soap
-    cd $< && $(MAKE)
-    cd $< && $(MAKE) install
+	cd $< && ./configure --prefix=$(abspath $(INSTALL_DIR)) --with-apxs2=$(abspath $(INSTALL_DIR)/bin/apxs) \
+	--disable-cgi --disable-cli --disable-soap
+	cd $< && $(MAKE)
+	cd $< && $(MAKE) install
 
 build-apache-with-php: $(INSTALL_DIR)/bin/httpd $(INSTALL_DIR)/modules/libphp7.so
-