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 <kfukuda@preferred.jp>
5959
Ken Raffenetti <raffenet@mcs.anl.gov>
6060
Khaled Hamidouche <Khaled.Hamidouche@amd.com>
6161
Konstantin Belousov <kib@freebsd.org>
62+
Laurin Martins <laurin.martins@outlook.de>
6263
Leonid Genkin <lgenkin@nvidia.com>
6364
Lior Paz <liorpa@nvidia.com>
6465
Luis E. Pena <l31g@hotmail.com>

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)