Home
DevCentral
Search
Configure Global Search
Log In
Transactions
T1531
Change Details
Change Details
Old
New
Diff
``` config["php_build_" + build_name + "_phase2_install"] = {'cmd.run': [ {'name': "make install"}, {'creates': directory + "/configure"}, ]} ``` That's the `creates` value for the configure and make process. For installation, we should target /opt/php56/bin/php, so `"/opt/" + build_name + "/bin/php"` ?
```lang=python config["php_build_" + build_name + "_phase2_install"] = {'cmd.run': [ {'name': "make install"}, {'creates': directory + "/configure"}, ]} ``` That's the `creates` value for the configure and make process. For installation, we should target /opt/php56/bin/php, so `"/opt/" + build_name + "/bin/php"` ?
```
lang=python
config["php_build_" + build_name + "_phase2_install"] = {'cmd.run': [ {'name': "make install"}, {'creates': directory + "/configure"}, ]} ``` That's the `creates` value for the configure and make process. For installation, we should target /opt/php56/bin/php, so `"/opt/" + build_name + "/bin/php"` ?
Continue