Browse Source

Spaces -> Tabs in php makefile

dettanym 4 years ago
parent
commit
72fb36ee48
1 changed files with 5 additions and 5 deletions
  1. 5 5
      apacheMakefile

+ 5 - 5
apacheMakefile

@@ -1,12 +1,12 @@
 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