From b12df0bb7beadbfd2a3b4bb278e3e4aede8ca974 Mon Sep 17 00:00:00 2001 From: John Ericson <John.Ericson@Obsidian.Systems> Date: Fri, 13 Oct 2023 11:54:07 -0400 Subject: [PATCH] `ghcversion.h`: No need to cope with undefined `ProjectPatchLevel*` Since 4e6c80197f1cc46dfdef0300de46847c7cfbdcb0, these are guaranteed to be defined. (Guaranteed including a test in the testsuite.) --- configure.ac | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index affb063f23d1..964e1497134c 100644 --- a/configure.ac +++ b/configure.ac @@ -78,10 +78,8 @@ cat rts/ghcversion.h.top >> rts/i echo "#define __GLASGOW_HASKELL__ ${ProjectVersionInt}" >> rts/include/ghcversion.h echo "#define __GLASGOW_HASKELL_FULL_VERSION__ \"${ProjectVersion}\"" >> rts/include/ghcversion.h echo >> rts/include/ghcversion.h -AS_IF([test x"${ProjectPatchLevel1}" != x], - [echo "#define __GLASGOW_HASKELL_PATCHLEVEL1__ ${ProjectPatchLevel1}" >> rts/include/ghcversion.h]) -AS_IF([test x"${ProjectPatchLevel2}" != x], - [echo "#define __GLASGOW_HASKELL_PATCHLEVEL2__ ${ProjectPatchLevel2}" >> rts/include/ghcversion.h]) +echo "#define __GLASGOW_HASKELL_PATCHLEVEL1__ ${ProjectPatchLevel1}" >> rts/include/ghcversion.h +echo "#define __GLASGOW_HASKELL_PATCHLEVEL2__ ${ProjectPatchLevel2}" >> rts/include/ghcversion.h cat rts/ghcversion.h.bottom >> rts/include/ghcversion.h -- GitLab