diff options
author | Ian Lynagh <igloo@earth.li> | 2011-03-16 16:20:45 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-03-16 16:20:45 +0000 |
commit | 58c4c3612c6c4e01ecd0e50648a11c5bd35c5aeb (patch) | |
tree | f2a8a3437f1151d0ccb31b6e6a6c4338d32d563a /includes/ghc.mk | |
parent | 29a05730930cd2c5986ebb22d550e893d9fa20cc (diff) | |
download | haskell-58c4c3612c6c4e01ecd0e50648a11c5bd35c5aeb.tar.gz |
Make include file paths a little prettier
This isn't important, but it stops us getting [...]/./[...] in the paths
in bindists.
Diffstat (limited to 'includes/ghc.mk')
-rw-r--r-- | includes/ghc.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/ghc.mk b/includes/ghc.mk index 8411a26c15..8d4fd473c0 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 |