summaryrefslogtreecommitdiff
path: root/scripts/scan-tools.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/scan-tools.sh')
-rw-r--r--scripts/scan-tools.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh
index 0e4dff4be..21f884e3f 100644
--- a/scripts/scan-tools.sh
+++ b/scripts/scan-tools.sh
@@ -78,7 +78,7 @@ else
fi
cat >Makefile <<'EOF'
-include ${TOPDIR}/prereq.mk
+include ${ADK_TOPDIR}/prereq.mk
all: run-test
test: test.c
@@ -96,7 +96,7 @@ cat >test.c <<-'EOF'
return (0);
}
EOF
-X=$($makecmd TOPDIR=$topdir 2>&1)
+X=$($makecmd ADK_TOPDIR=$topdir 2>&1)
if [[ $X != *@(Native compiler works)* ]]; then
echo "$X" | sed 's/^/| /'
echo Cannot compile a simple test programme.
@@ -144,7 +144,7 @@ cat >test.c <<-'EOF'
}
EOF
X=$(echo 'Yay! Native compiler works.' | gzip | \
- $makecmd TOPDIR=$topdir LDADD=-lz 2>&1)
+ $makecmd ADK_TOPDIR=$topdir LDADD=-lz 2>&1)
if [[ $X != *@(Native compiler works)* ]]; then
echo "$X" | sed 's/^/| /'
echo Cannot compile a libz test programm.