diff options
author | Stig Bakken <ssb@php.net> | 1999-12-03 13:31:41 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 1999-12-03 13:31:41 +0000 |
commit | a8f71d621f484833f0784b9636f95d1eb46789c0 (patch) | |
tree | 8c93638b828775d289b5021f8f93025cb07c9173 /configure.in | |
parent | 992eb497bf186e8931fa686d584df157ed07580f (diff) | |
download | php-git-a8f71d621f484833f0784b9636f95d1eb46789c0.tar.gz |
Add configure command to phpinfo() output (Stig)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 0157c1d7cb..38aff64191 100644 --- a/configure.in +++ b/configure.in @@ -16,6 +16,12 @@ fi cwd=`pwd` passthru="$@" +CONFIGURE_COMMAND=$0 +for arg in "$@"; do + CONFIGURE_COMMAND="$CONFIGURE_COMMAND '$arg'" +done +AC_SUBST(CONFIGURE_COMMAND) + dnl ## Diversion 1 is the initial checking of OS features, programs, dnl ## libraries and so on. |