aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2010-08-03 00:03:04 +0000
committerMax Horn2010-08-03 00:03:04 +0000
commit0437ffa75c510f0bb8a3a5cd580b79008446522e (patch)
tree491d937107cbffd609264868c001bbf3d4f01bc9
parent39846310d79e75faf55482a239ec5ca8eaf34c2b (diff)
downloadscummvm-rg350-0437ffa75c510f0bb8a3a5cd580b79008446522e.tar.gz
scummvm-rg350-0437ffa75c510f0bb8a3a5cd580b79008446522e.tar.bz2
scummvm-rg350-0437ffa75c510f0bb8a3a5cd580b79008446522e.zip
N64: Error out in configure if N64SDK is not set
svn-id: r51672
-rwxr-xr-xconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure
index 454544300b..d276ab541c 100755
--- a/configure
+++ b/configure
@@ -1108,6 +1108,12 @@ ds | gamecube | wii)
exit 1
fi
;;
+n64)
+ if test -z "$N64SDK"; then
+ echo "Please set N64SDK in your environment. export N64SDK=<path to n64 sdk>"
+ exit 1
+ fi
+ ;;
ps2)
if test -z "$PS2SDK"; then
echo "Please set PS2SDK in your environment. export PS2SDK=<path to ps2 sdk>"