|
From: andi <bin...@li...> - 2001-09-12 18:10:49
|
andi Wed Sep 12 11:10:42 2001 EDT
Modified files:
/r2/binarycloud Makefile.in
Log:
Added PHP_COMMAND variable to get rid of relying on /path/to/php sutff in the files
Index: r2/binarycloud/Makefile.in
diff -u r2/binarycloud/Makefile.in:1.8 r2/binarycloud/Makefile.in:1.9
--- r2/binarycloud/Makefile.in:1.8 Thu Aug 23 17:07:43 2001
+++ r2/binarycloud/Makefile.in Wed Sep 12 11:10:42 2001
@@ -1,5 +1,5 @@
# {{{ Header
-# -File $Id: Makefile.in,v 1.8 2001/08/24 00:07:43 alex Exp $
+# -File $Id: Makefile.in,v 1.9 2001/09/12 18:10:42 andi Exp $
# -License LGPL (http://www.gnu.org/copyleft/lesser.html)
# -Copyright 2001, Intacct Corp.
# -Author odysseas tsatalos, ody...@ya...
@@ -15,20 +15,21 @@
MAKE_DIR = $(BC_DIR)/make
BUILD_DIR = $(BC_DIR)/build/$(BC_LANG)
BCBUILD_DIR = $(BUILD_DIR)/binarycloud
-SITEBUILD_DIR = $(BUILD_DIR)/htdocs
-USERBUILD_DIR = $(BUILD_DIR)/user
-EXTBUILD_DIR = $(BUILD_DIR)/ext
-TOOLS_DIR = $(SOURCE_DIR)/utils
-
-GETPKG = $(TOOLS_DIR)/pk2dir.pl
-INSTALLCODE = $(TOOLS_DIR)/installcode.sh
-PROCESSPREPEND = $(TOOLS_DIR)/processprepend.php
-XML2PHP= $(TOOLS_DIR)/xml2php.php
+SITEBUILD_DIR = $(BUILD_DIR)/htdocs
+USERBUILD_DIR = $(BUILD_DIR)/user
+EXTBUILD_DIR = $(BUILD_DIR)/ext
+TOOLS_DIR = $(SOURCE_DIR)/utils
+PHP_COMMAND = /usr/local/php4/bin/php -q
+GETPKG = $(TOOLS_DIR)/pk2dir.pl
+INSTALLCODE = $(TOOLS_DIR)/installcode.sh
+PROCESSPREPEND = $(PHP_COMMAND) $(TOOLS_DIR)/processprepend.php
+XML2PHP = $(PHP_COMMAND) $(TOOLS_DIR)/xml2php.php
+
.SUFFIXES:
.SUFFIXES: .php .xml
+
-
.xml.php:
$(XML2PHP) $< $(BUILD_DIR)$*.php
|