commit 430656d25cf0f79733bfa728a6a6740a902eb450 parent 29dfde42e86548d6be452186e81e05d576826165 Author: lostd <lostd@2f30.org> Date: Thu, 13 Oct 2016 15:08:58 +0200 Drop echo(1) in favor of printf(1) Diffstat:
M | configure | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure @@ -1,3 +1,3 @@ #!/bin/sh -echo "UNAME = $(uname)" > config.mk +printf 'UNAME = %s\n' "$(uname)" > config.mk