From 7cbe3f57f5c256ed67ff0fb2ee9f0cfe74829d96 Mon Sep 17 00:00:00 2001 From: "warren.toomey" Date: Wed, 7 May 2008 00:30:06 +0000 Subject: [PATCH] also added a check that apout binary exists. --- tools/assemv2 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/assemv2 b/tools/assemv2 index 1e2ade6..0a1805e 100755 --- a/tools/assemv2 +++ b/tools/assemv2 @@ -11,6 +11,10 @@ then echo 'You need to compile Simh with the ke11 patch, and place the' echo 'resulting pdp11 executable into the tools/ directory.' exit 1 fi +if [ ! -f tools/apout/apout ] +then echo 'You need to go into tools/apout/ and do a make to compile apout' + exit 1 +fi if [ ! -d build ] then mkdir build fi