瀏覽代碼

Coz spaces -> tabs is hard.

dettanym 4 年之前
父節點
當前提交
6090daf051
共有 1 個文件被更改,包括 5 次插入6 次删除
  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
-