when installing apache, mysql, php from source ./configure does not a command anymore. What is the replacement for ./configure on ubuntu 13.10?
Asked
Active
Viewed 2,498 times
0
1 Answers
1
configure
is a script (file) located in the source tree of a source distribution. There is no replacement for it in Ubuntu 13.10, if the source is the same it will still work.
Make sure that you navigated to the source tree of a project. Example instructions that are still applicable:
Download source.
wget http://bumblebee-project.org/bumblebee-3.2.1.tar.gz
Extract source.
tar xf bumblebee-3.2.1.tar.gz
Enter extracted source tree.
cd bumblebee-3.2.1
Run the
configure
script:./configure --help

Lekensteyn
- 174,277
./configure
is still a command. Why do you think it isn't? – Paul Jun 09 '13 at 22:02