Skip to content

Commit 61d9657

Browse files
committed
configury: rename a pushed variable in OPAL_CONFIG_SUBDIR
the 'temp' environment variable is used by default in msys2, so rename it to 'subdir_temp' to make configury a happy panda. Signed-off-by: Gilles Gouaillardet <[email protected]>
1 parent 0250d83 commit 61d9657

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

config/opal_config_subdir.m4

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ dnl Copyright (c) 2004-2005 The Regents of the University of California.
1212
dnl All rights reserved.
1313
dnl Copyright (c) 2012-2015 Cisco Systems, Inc. All rights reserved.
1414
dnl Copyright (c) 2014 Intel, Inc. All rights reserved.
15-
dnl Copyright (c) 2015 Research Organization for Information Science
16-
dnl and Technology (RIST). All rights reserved.
15+
dnl Copyright (c) 2015-2018 Research Organization for Information Science
16+
dnl and Technology (RIST). All rights reserved.
1717
dnl $COPYRIGHT$
1818
dnl
1919
dnl Additional copyrights may follow
@@ -22,7 +22,7 @@ dnl $HEADER$
2222
dnl
2323

2424
AC_DEFUN([OPAL_CONFIG_SUBDIR],[
25-
OPAL_VAR_SCOPE_PUSH([subdir_parent sub_configure subdir_dir subdir_srcdir subdir_cache_file subdir_args subdir_dots total_dir dir_part temp])
25+
OPAL_VAR_SCOPE_PUSH([subdir_parent sub_configure subdir_dir subdir_srcdir subdir_cache_file subdir_args subdir_dots total_dir dir_part subdir_temp])
2626

2727
#
2828
# Invoke configure in a specific subdirectory.
@@ -58,8 +58,8 @@ if test "$subdir_dir" != ":" && test -d $srcdir/$subdir_dir; then
5858
[[\\/]]* | ?:[[\\/]]* ) total_dir=;;
5959
*) total_dir=.;;
6060
esac
61-
temp=$subdir_dir
62-
for dir_part in `IFS='/\\'; set X $temp; shift; echo "$[@]"`; do
61+
subdir_temp=$subdir_dir
62+
for dir_part in `IFS='/\\'; set X $subdir_temp; shift; echo "$[@]"`; do
6363
case $dir_part in
6464
# Skip DOS drivespec
6565
?:) total_dir=$dir_part ;;

0 commit comments

Comments
 (0)