I have a script that installs a software. The script have answers prepared in advance in order to feed checkinstall with them. checkinstall prompts differently when the source has already been configured/make or not.
How can I tell if configure / make / make install was executed in the source directory?
Tell me more
×
Super User is a question and answer site for
computer enthusiasts and power users. It's 100% free, no registration required.
|
|
|||
|
I am not sure I understand how your setup looks like, but when using autotools (like you seem to do) files are created from autotools template files like The different steps then produce a number of files in the build directory you could check for.
To check if
and then check for Since when using autotools there won't be no |
|||
|
|
./configure,makeandcheckinstall. Butcheckinstallis essentiallymake install. – Dor Jul 20 '11 at 15:30