aboutsummaryrefslogtreecommitdiffstats
path: root/configure.pl
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-29 20:17:08 +0000
committerlloyd <[email protected]>2008-09-29 20:17:08 +0000
commit7c0319368d1948d54db514e5f72c589a397e2909 (patch)
tree2d52b6dd8715a6ea0fc21b3a66673fb38a8d4ebb /configure.pl
parent0f2dfff90fe3882a85308d66a05803178a452023 (diff)
Remove the misc dir:
Moved XS, Boost Python, and SWIG wrappers to new toplevel directory 'wrappers' Moved NIST X.509 test suite into checks directory Move the build information used by configure.pl to src/build-data Move scripts directory to doc (for lack of a better spot)
Diffstat (limited to 'configure.pl')
-rwxr-xr-xconfigure.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.pl b/configure.pl
index 2f6e2852c..167942af6 100755
--- a/configure.pl
+++ b/configure.pl
@@ -45,11 +45,13 @@ sub main {
my $base_dir = where_am_i();
$$config{'base-dir'} = $base_dir;
- $$config{'config-dir'} = File::Spec->catdir($base_dir, 'misc', 'config');
$$config{'src-dir'} = File::Spec->catdir($base_dir, 'src');
$$config{'checks-dir'} = File::Spec->catdir($base_dir, 'checks');
$$config{'doc-dir'} = File::Spec->catdir($base_dir, 'doc');
+ $$config{'config-dir'} =
+ File::Spec->catdir($$config{'src-dir'}, 'build-data');
+
$$config{'command-line'} = $0 . ' ' . join(' ', @ARGV);
$$config{'timestamp'} = gmtime;
$$config{'user'} = getlogin || getpwuid($<) || '';