From ae9e2149a55c75e99a2d1dade0f2c3a031b9139d Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 11 Jan 2022 21:32:07 -0500 Subject: [PATCH] os2-buildbot.sh: Use the 64-bit Watcom binaries. GitHub Actions is a 64-bit Ubuntu instance. It was only using the 32-bit binaries because our buildbot put this on the 32-bit Linux host to spread the CPU load around more evenly. --- build-scripts/os2-buildbot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-scripts/os2-buildbot.sh b/build-scripts/os2-buildbot.sh index ff4b5f64be..abe0350d0e 100755 --- a/build-scripts/os2-buildbot.sh +++ b/build-scripts/os2-buildbot.sh @@ -12,7 +12,7 @@ if [ -z "$WATCOM" ]; then echo "This is often something like '/usr/local/share/watcom'" 1>&2 exit 1 fi -export PATH="$WATCOM/binl:$PATH" +export PATH="$WATCOM/binl64:$PATH" ZIPFILE="$1" if [ -z $1 ]; then