diff options
author | Björn-Egil Dahlberg <[email protected]> | 2014-04-28 17:06:35 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2014-04-28 17:06:35 +0200 |
commit | 13b2c8f9d2d77775778c2286322f76e7317b1ac4 (patch) | |
tree | f58d2d4f6cf4312145c49262a3ae9d2d65f63b3d | |
parent | 4d957870d4e5ae98e91b9118f8b2e8319ab4fa33 (diff) | |
parent | c6fedff23faca29a1a6f1d0bb5f20b0bc5c0db42 (diff) | |
download | otp-13b2c8f9d2d77775778c2286322f76e7317b1ac4.tar.gz otp-13b2c8f9d2d77775778c2286322f76e7317b1ac4.tar.bz2 otp-13b2c8f9d2d77775778c2286322f76e7317b1ac4.zip |
Merge branch 'nox/fix-silent-rules' into maint
* nox/fix-silent-rules:
Silence an echo in Makefile.in
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 4dc5ebac40..5c96c789dc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -451,7 +451,7 @@ else $(make_verbose)cd lib && \ ERL_TOP=$(ERL_TOP) PATH=$(BOOT_PREFIX)"$${PATH}" \ $(MAKE) opt BUILD_ALL=true - echo "OTP built" > $(ERL_TOP)/make/otp_built + $(V_at)echo "OTP built" > $(ERL_TOP)/make/otp_built endif kernel: $(make_verbose)cd lib/kernel && \ |