Don't try to run make_services if we are cross-compiling.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25755 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2007-12-17 21:30:19 +00:00
parent 2cb413a872
commit 4384ca6057
5 changed files with 21 additions and 8 deletions

View file

@ -50,7 +50,11 @@ include GNUmakefile.preamble
-include GNUmakefile.local
GNUSTEP_MAKE_SERVICES=./$(GNUSTEP_OBJ_DIR)/make_services
ifeq ($(CROSS_COMPILING),yes)
GNUSTEP_MAKE_SERVICES=:
else
GNUSTEP_MAKE_SERVICES=./$(GNUSTEP_OBJ_DIR)/make_services
endif
include $(GNUSTEP_MAKEFILES)/tool.make
include $(GNUSTEP_MAKEFILES)/service.make