diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-04 19:08:48 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-04 19:08:48 +0000 |
commit | a87d82081d83fec065caf2a91e82fe241d3eae28 (patch) | |
tree | c499a882fc7d86113c8cf4f6fd23c989d966d419 /package | |
parent | ddd73e012c6079e205528c9781c4122f3e046d5f (diff) | |
download | buildroot-novena-a87d82081d83fec065caf2a91e82fe241d3eae28.tar.gz buildroot-novena-a87d82081d83fec065caf2a91e82fe241d3eae28.zip |
Makefile.autotools.in: remove extra newlines in MESSAGE macro
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile.autotools.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index 07bb32d47..266fd5ec2 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -110,9 +110,7 @@ INFLATE.tgz = $(ZCAT) INFLATE.tar = cat # MESSAGE Macro -- display a message in bold type -MESSAGE = @echo $(TERM_BOLD); \ - echo ">>> $($(PKG)_NAME) $($(PKG)_VERSION) $(1)"; \ - echo $(TERM_RESET) +MESSAGE = @echo "$(TERM_BOLD)>>> $($(PKG)_NAME) $($(PKG)_VERSION) $(1)$(TERM_RESET)" TERM_BOLD = #$(shell tput bold) TERM_RESET = #$(shell tput rmso) |