summaryrefslogtreecommitdiff
path: root/lib/make/make.thornlib
diff options
context:
space:
mode:
authorknarf <knarf@17b73243-c579-4c4c-a9d2-2d5706c11dac>2011-09-28 03:15:23 +0000
committerknarf <knarf@17b73243-c579-4c4c-a9d2-2d5706c11dac>2011-09-28 03:15:23 +0000
commit643410515c22de2945df896974b44c9ca2c6051e (patch)
tree83ab57619ddd8d6e3c8b80a18cd32114f89a65ee /lib/make/make.thornlib
parent247c55146bdc71db2f3b5b3944a9fcc9914ba467 (diff)
fix issue #586: bashisms, and uppercase VERBOSE=YES, as well as a couple of minor cosmetics issues
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4739 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/make.thornlib')
-rw-r--r--lib/make/make.thornlib4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/make/make.thornlib b/lib/make/make.thornlib
index 49861b0e..9752a8a7 100644
--- a/lib/make/make.thornlib
+++ b/lib/make/make.thornlib
@@ -8,13 +8,11 @@
# @version $Id$
# @@*/
-# Silence all but designated output
-#.VERBOSE:
-
# Dividers to make the screen output slightly nicer
DIVEL = __________________
DIVIDER = $(DIVEL)$(DIVEL)$(DIVEL)$(DIVEL)
define NOTIFY_DIVIDER
+ VERBOSE=`echo $VERBOSE | tr '[:upper:]' '[:lower:]'`; \
if test "$(VERBOSE)" = "yes"; then echo $(DIVIDER); fi
endef