diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2014-12-22 17:35:39 +0100 |
---|---|---|
committer | Austin Seipp <aseipp@pobox.com> | 2014-12-22 10:43:19 -0600 |
commit | a8c556dfca3eca5277615cc2bf9d6c8f1f143c9a (patch) | |
tree | da2782ded12ea966deeee825ce40fd50dce333f8 | |
parent | bb0603902568cd2442430ea9848d56f2498c854a (diff) | |
download | haskell-ghc-7.10.1-rc1.tar.gz |
Fix typo in GLASGOW_HASKELL_PATCHLEVEL2 macroghc-7.10.1-rc1
This typo slipped in through 3549c952b535803270872adaf87262f2df0295a4
(cherry picked from commit 3879bdf3afb00ff8569cba4648876652d1addadb)
-rw-r--r-- | includes/ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/ghc.mk b/includes/ghc.mk index f0bfbec0da..c7cec6c948 100644 --- a/includes/ghc.mk +++ b/includes/ghc.mk @@ -68,7 +68,7 @@ $(includes_H_VERSION) : mk/project.mk | $$(dir $$@)/. echo "#define __GLASGOW_HASKELL_PATCHLEVEL1__ $(ProjectPatchLevel1)" >> $@; \ fi @if [ -n "$(ProjectPatchLevel2)" ]; then \ - echo "#define __GLASGOW_HASKELL_PATCHLEVEL1__ $(ProjectPatchLevel2)" >> $@; \ + echo "#define __GLASGOW_HASKELL_PATCHLEVEL2__ $(ProjectPatchLevel2)" >> $@; \ fi @echo >> $@ @echo '#define MIN_VERSION_GLASGOW_HASKELL(ma,mi,pl1,pl2) (\\' >> $@ |