0

Suppose I have compiled and installed some software package with:

./configure --with --some --parameters
make
make install

Is there any way I can get the parameters I passed to ./configure?

I still have the original directory where ./configure and make took place, but I am also interested in the other case, one where these files are no longer available.

user3452579
  • 413
  • 4
  • 14

1 Answers1

0

configure.log will have the arguments used when it was invoked at the very top of the file, head configure.log should be enough to view them.

user657267
  • 20,568
  • 5
  • 58
  • 77