From: Ian Lynagh Date: Wed, 15 Aug 2007 11:14:32 +0000 (+0000) Subject: Fix the build when GMP_INCLUDE_DIRS == "" X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=22010da1a4517529292991ab550bba6d3c3e7523 Fix the build when GMP_INCLUDE_DIRS == "" --- diff --git a/includes/Makefile b/includes/Makefile index 2acf075..32ab5f8 100644 --- a/includes/Makefile +++ b/includes/Makefile @@ -27,10 +27,13 @@ ifeq "$(GhcEnableTablesNextToCode) $(GhcUnregisterised)" "YES NO" SRC_CC_OPTS += -DTABLES_NEXT_TO_CODE endif +SRC_CC_OPTS += -I. -I../rts ifeq "$(HaveLibGmp)" "YES" -SRC_CC_OPTS += -I. -I../rts -I$(GMP_INCLUDE_DIRS) +ifneq "$(GMP_INCLUDE_DIRS)" "" +SRC_CC_OPTS += -I$(GMP_INCLUDE_DIRS) +endif else -SRC_CC_OPTS += -I. -I../rts -I../gmp/gmpbuild +SRC_CC_OPTS += -I../gmp/gmpbuild endif ifneq "$(GhcWithSMP)" "YES"