From d57f0425268768401215500469835f35d027196d Mon Sep 17 00:00:00 2001 From: gewlitys Date: Sat, 18 Oct 2008 09:24:06 +0000 Subject: [PATCH] Do not build getopt for Symbian. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3094 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/Makeinfo | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/sc2/src/Makeinfo b/sc2/src/Makeinfo index 888c69df3..687cb4947 100644 --- a/sc2/src/Makeinfo +++ b/sc2/src/Makeinfo @@ -1,4 +1,13 @@ -uqm_SUBDIRS="sc2code getopt res" +uqm_SUBDIRS="sc2code res" + +case "$HOST_SYSTEM" in + ARMV5|GCCE|WINSCW) + ;; + *) + uqm_SUBDIRS="$uqm_SUBDIRS getopt" + ;; +esac + case "$HOST_SYSTEM" in Darwin) uqm_SUBDIRS="$uqm_SUBDIRS darwin"