diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2019-11-11 23:28:54 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2019-11-11 23:28:54 +0000 |
commit | b72813a68c943643a6241418f27aa8b9d4614647 (patch) | |
tree | 6824183e1fd5660d87c890193f616f8e6e81136e /libgo/configure | |
parent | ce6a6c007e5a985e64fd6293b9606420debe50f5 (diff) | |
download | gcc-b72813a68c943643a6241418f27aa8b9d4614647.tar.gz |
libgo: fix DejaGNU testsuite compiler when using build sysroot
Patch by Maciej W. Rozycki.
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/206577
From-SVN: r278070
Diffstat (limited to 'libgo/configure')
-rwxr-xr-x | libgo/configure | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libgo/configure b/libgo/configure index 09c89dfe070..ba80569e26d 100755 --- a/libgo/configure +++ b/libgo/configure @@ -15850,7 +15850,7 @@ else multilib_arg= fi -ac_config_files="$ac_config_files Makefile testsuite/Makefile" +ac_config_files="$ac_config_files Makefile testsuite/Makefile testsuite/libgo-test-support.exp" ac_config_commands="$ac_config_commands default" @@ -17031,6 +17031,7 @@ do "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "testsuite/Makefile") CONFIG_FILES="$CONFIG_FILES testsuite/Makefile" ;; + "testsuite/libgo-test-support.exp") CONFIG_FILES="$CONFIG_FILES testsuite/libgo-test-support.exp" ;; "default") CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; |