From 58c4c3612c6c4e01ecd0e50648a11c5bd35c5aeb Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 16 Mar 2011 16:20:45 +0000 Subject: [PATCH] Make include file paths a little prettier This isn't important, but it stops us getting [...]/./[...] in the paths in bindists. --- includes/ghc.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/ghc.mk b/includes/ghc.mk index 8411a26..8d4fd47 100644 --- a/includes/ghc.mk +++ b/includes/ghc.mk @@ -27,6 +27,8 @@ includes_H_SUBDIRS += rts/storage includes_H_SUBDIRS += stg includes_H_FILES := $(wildcard $(patsubst %,includes/%/*.h,$(includes_H_SUBDIRS))) +# This isn't necessary, but it makes the paths look a little prettier +includes_H_FILES := $(subst /./,/,$(includes_H_FILES)) # # Options -- 1.7.10.4