We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73c265e commit b91479aCopy full SHA for b91479a
t/Makefile
@@ -7,6 +7,7 @@
7
# STG_PROVE_OPTS = --jobs=9
8
STG_PROVE_OPTS ?=
9
STG_PROFILE ?=
10
+STG_TARGET ?=
11
SHELL_PATH ?= $(SHELL)
12
TEST_SHELL_PATH ?= $(SHELL_PATH)
13
PERL_PATH ?= /usr/bin/perl
t/test-bin/stg
@@ -6,4 +6,9 @@ then
6
else
profile_dir="$STG_PROFILE"
fi
-exec "$STG_ROOT/target/$profile_dir/stg" "$@"
+if [ -n "$STG_TARGET" ]
+then
+ exec "$STG_ROOT/target/$STG_TARGET/$profile_dir/stg" "$@"
+else
+ exec "$STG_ROOT/target/$profile_dir/stg" "$@"
14
+fi
0 commit comments