From bbe078e06c320a4ec7ed63d40bdee5ebb91fb885 Mon Sep 17 00:00:00 2001 From: Jon Siwek Date: Thu, 20 Jan 2011 12:37:38 -0600 Subject: [PATCH] Changed configure wrapper to create config.status --- aux/binpac | 2 +- aux/bro-aux | 2 +- aux/broccoli | 2 +- aux/broctl | 2 +- configure | 6 ++++++ 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/aux/binpac b/aux/binpac index 898cfd5ddc..fd6d44cd33 160000 --- a/aux/binpac +++ b/aux/binpac @@ -1 +1 @@ -Subproject commit 898cfd5ddc8cd356e4052c0bd699e51812a91e98 +Subproject commit fd6d44cd33113e9be2bfed41fb40e1a14463f4fb diff --git a/aux/bro-aux b/aux/bro-aux index d741ee2ebd..4960f96e02 160000 --- a/aux/bro-aux +++ b/aux/bro-aux @@ -1 +1 @@ -Subproject commit d741ee2ebd6576d9329218bfb53941b4de5375b6 +Subproject commit 4960f96e0280a71117fde3ad93542ed87d67e7a1 diff --git a/aux/broccoli b/aux/broccoli index c745d747ec..1deee84b06 160000 --- a/aux/broccoli +++ b/aux/broccoli @@ -1 +1 @@ -Subproject commit c745d747ec65f608bead605fc26f84ca44be21c9 +Subproject commit 1deee84b06deb2b104996c41e82942082a9dc88d diff --git a/aux/broctl b/aux/broctl index 4133635936..3ae777aa65 160000 --- a/aux/broctl +++ b/aux/broctl @@ -1 +1 @@ -Subproject commit 41336359365238036fd63f8bf8d2624da71c200b +Subproject commit 3ae777aa658f7c4714107b464700d1e2e60c9952 diff --git a/configure b/configure index dce70e6534..01be939a4e 100755 --- a/configure +++ b/configure @@ -2,6 +2,8 @@ # Convenience wrapper for easily viewing/setting options that # the project's CMake scripts will recognize +command="$0 $*" + # check for `cmake` command type cmake > /dev/null 2>&1 || { echo "\ @@ -217,3 +219,7 @@ if [ -n "$CMakeGenerator" ]; then else cmake $CMakeCacheEntries $sourcedir fi + +echo "# This is the command used to configure this build" > config.status +echo $command >> config.status +chmod u+x config.status