summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-09-25 10:48:24 -0400
committerBrad King <brad.king@kitware.com>2009-09-25 10:48:24 -0400
commit28531d17072d363eafb0b7de1946a7cffef2f6f0 (patch)
tree248c6268dedfcfa423a0d047e0f1e4a074181ace /configure
parentd468145fa2e5abbba2b9f6ea32eab206738312b4 (diff)
downloadcmake-28531d17072d363eafb0b7de1946a7cffef2f6f0.tar.gz
Simplify bootstrap script source dir detection
This teaches the bootstrap shell script to detect the CMake source directory from which it is executed using a simpler idiom.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index dbfec50242..116221602c 100755
--- a/configure
+++ b/configure
@@ -1,3 +1,3 @@
-#! /bin/sh
-cmake_source_dir=`echo $0 | sed -n '/\//{s/\/[^\/]*$//;p;}'`
+#!/bin/sh
+cmake_source_dir=`cd "\`dirname \"$0\"\`";pwd`
exec "${cmake_source_dir}/bootstrap" "$@"