From 99f37bac50ea44db16f235cd2554bd463e225292 Mon Sep 17 00:00:00 2001 From: erics Date: Wed, 1 Nov 2017 21:02:17 +0000 Subject: [PATCH] --- ...metic__58___clarify_a_warning_message.mdwn | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 doc/bugs/__91__PATCH__93___Cosmetic__58___clarify_a_warning_message.mdwn diff --git a/doc/bugs/__91__PATCH__93___Cosmetic__58___clarify_a_warning_message.mdwn b/doc/bugs/__91__PATCH__93___Cosmetic__58___clarify_a_warning_message.mdwn new file mode 100644 index 0000000000..79d6e3fa76 --- /dev/null +++ b/doc/bugs/__91__PATCH__93___Cosmetic__58___clarify_a_warning_message.mdwn @@ -0,0 +1,22 @@ + commit 3ee8dc86cd831e975c80844924ef062b79e763b6 + Author: Eric Siegerman + Date: Tue Oct 31 21:12:38 2017 -0400 + + Make a Makefile warning ... more obviously only a warning + + diff --git a/Makefile b/Makefile + index aceb65cae..0381e7383 100644 + --- a/Makefile + +++ b/Makefile + @@ -34,7 +34,10 @@ git-annex: tmp/configure-stamp + # Work around https://github.com/haskell/cabal/issues/3524 + # when not linked dynamically to haskell libs + @if ! ldd git-annex | grep -q libHS; then \ + - chrpath -d git-annex || echo "** unable to chrpath git-annex; it will be a little bit slower than necessary"; \ + + chrpath -d git-annex || { \ + + echo "** warning: unable to chrpath git-annex; it will run OK..."; \ + + echo "** ... but maybe a little bit slower than necessary"; \ + + } \ + fi + + git-annex-shell: git-annex