aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/__91__PATCH__93___Cosmetic__58___clarify_a_warning_message.mdwn
blob: f62e75d9ee43897035f4e9272e5754b7054eac85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
	commit 3ee8dc86cd831e975c80844924ef062b79e763b6
	Author: Eric Siegerman <pub08-git@davor.org>
	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

> Added "warning:" [[done]] --[[Joey]]