From 15b76d9f764a51d26d957d72a916c94e5fd0c869 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 8 May 2011 23:23:11 +0900 Subject: [PATCH] improve the bootstrap abort error text --- ghc-rpm-macros.ghc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghc-rpm-macros.ghc b/ghc-rpm-macros.ghc index ccb9f06..9ed4692 100644 --- a/ghc-rpm-macros.ghc +++ b/ghc-rpm-macros.ghc @@ -9,10 +9,10 @@ %cabal_configure\ %if %{undefined ghc_bootstrap}\ if [ ! "$(ghc --info | grep \\"Booter\\ version\\",\\"%{ghc_version}\\")" ]; then\ - echo "Aborting since this ghc version build is not self-bootstrapped.\ + echo "Aborting since this ghc build is not self-bootstrapped.\ The ghc package should be rebuilt against its current version first\ -to prevent dependency ABI breakage with a future ghc rebuild.\ -(This can be overridden at your own risk by defining ghc_bootstrap.)"\ +to prevent dependency ABI breakage from a future ghc rebuild.\ +(This can be overridden understanding this risk, by defining ghc_bootstrap.)"\ exit 1\ fi\ %endif\