Revision 2618
Added by Aaron Marcuse-Kubitza over 12 years ago
Makefile | ||
---|---|---|
87 | 87 |
##### Python |
88 | 88 |
|
89 | 89 |
python-Linux: _always |
90 |
-sudo apt-get install python python-dev python-dateutil python-parallel \ |
|
91 |
python-profiler python-pip pymetrics |
|
90 |
-sudo apt-get install python |
|
91 |
-sudo apt-get install python-dev |
|
92 |
-sudo apt-get install python-dateutil |
|
93 |
-sudo apt-get install python-parallel |
|
94 |
-sudo apt-get install python-profiler |
|
95 |
-sudo apt-get install python-pip |
|
96 |
-sudo apt-get install pymetrics |
|
92 | 97 |
-sudo pip install pp |
93 | 98 |
|
94 | 99 |
python-Darwin: _always |
... | ... | |
135 | 140 |
sudo ed --loose-exit-status --verbose /etc/apache2/ports.conf |
136 | 141 |
|
137 | 142 |
postgres-Linux: _always |
138 |
-sudo apt-get install postgresql libpq-dev phppgadmin |
|
143 |
-sudo apt-get install postgresql |
|
144 |
-sudo apt-get install libpq-dev |
|
145 |
-sudo apt-get install phppgadmin |
|
139 | 146 |
$(editPhppgadminApacheConf) |
140 | 147 |
$(editApacheConfForPhppgadmin) |
141 | 148 |
$(if $(nonApacheOnPort80),$(editApachePortsConf)) |
Also available in: Unified diff
main Makefile: python-Linux, postgres-Linux: Fixed bug where apt-get installs needed to each be run in a separate command, so that if any package was not found, the other packages would still install. (apt-get aborts on the first invalid package name.)