aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bmake.rb
diff options
context:
space:
mode:
authorJack Nagel2014-05-09 10:31:12 -0500
committerJack Nagel2014-05-09 10:31:16 -0500
commitcc6784ce00c39a642d877a7c6c26a756ca1178f2 (patch)
tree4db458785e083496dcd752d720e1a514e103445a /Library/Formula/bmake.rb
parent367f3609147e5b1c3295b6f51cb903025458a67b (diff)
downloadhomebrew-cc6784ce00c39a642d877a7c6c26a756ca1178f2.tar.bz2
bmake: use escape sequence instead of literal tab
Diffstat (limited to 'Library/Formula/bmake.rb')
-rw-r--r--Library/Formula/bmake.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Formula/bmake.rb b/Library/Formula/bmake.rb
index c01e7231f..11dbc6407 100644
--- a/Library/Formula/bmake.rb
+++ b/Library/Formula/bmake.rb
@@ -19,15 +19,14 @@ class Bmake < Formula
end
test do
- # Note, literal tabs in this makefile
(testpath/"Makefile").write <<-EOS
all: hello
hello:
- @echo 'Test successful.'
+\t@echo 'Test successful.'
clean:
- rm -rf Makefile
+\trm -rf Makefile
EOS
system bin/"bmake"