Skip to content

Commit 816d523

Browse files
committed
CONTRIB/CONFIGURE: Update configure scripts to handle spaces in basedir
1 parent 29831d3 commit 816d523

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Keisuke Fukuda <[email protected]>
5959
Ken Raffenetti <[email protected]>
6060
Khaled Hamidouche <[email protected]>
6161
Konstantin Belousov <[email protected]>
62+
Laurin Martins <[email protected]>
6263
Leonid Genkin <[email protected]>
6364
6465
Luis E. Pena <[email protected]>

contrib/configure-devel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212

1313
basedir=$(cd $(dirname $0) && pwd)
14-
$basedir/../configure \
14+
"$basedir/../configure" \
1515
--enable-gtest \
1616
--enable-examples \
1717
--enable-test-apps \

contrib/configure-opt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
#
1212

1313
basedir=$(cd $(dirname $0) && pwd)
14-
$basedir/configure-release \
14+
"$basedir/configure-release" \
1515
--enable-optimizations \
1616
"$@"

contrib/configure-prof

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212

1313
basedir=$(cd $(dirname $0) && pwd)
14-
$basedir/../configure \
14+
"$basedir/../configure" \
1515
--disable-logging \
1616
--disable-debug \
1717
--disable-assertions \

contrib/configure-release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212

1313
basedir=$(cd $(dirname $0) && pwd)
14-
$basedir/../configure \
14+
"$basedir/../configure" \
1515
--disable-logging \
1616
--disable-debug \
1717
--disable-assertions \

contrib/configure-release-mt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
#
1212

1313
basedir=$(cd $(dirname $0) && pwd)
14-
$basedir/../contrib/configure-release \
14+
"$basedir/../contrib/configure-release" \
1515
--enable-mt \
1616
"$@"

0 commit comments

Comments
 (0)