From 22010da1a4517529292991ab550bba6d3c3e7523 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 15 Aug 2007 11:14:32 +0000 Subject: [PATCH] Fix the build when GMP_INCLUDE_DIRS == "" --- includes/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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" -- 1.7.10.4