diff options
author | Mizunashi Mana <mizunashi-mana@noreply.git> | 2018-10-20 09:42:56 +0200 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2018-10-20 09:42:56 +0200 |
commit | 9f5cb626ed4bede914b57ec8e233808030671ee5 (patch) | |
tree | 6d4ee900ce57caeb1757ede50e42a60900db9f8e /build/genif.sh | |
parent | 4be0528476763d8c6bfb7a47ad62278c187ef400 (diff) | |
download | php-git-9f5cb626ed4bede914b57ec8e233808030671ee5.tar.gz |
Fix #77041: buildconf should output error messages to stderr
Diffstat (limited to 'build/genif.sh')
-rw-r--r-- | build/genif.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/genif.sh b/build/genif.sh index 4a9c0faee7..c150c4c40a 100644 --- a/build/genif.sh +++ b/build/genif.sh @@ -13,7 +13,7 @@ awk=$1 shift if test -z "$infile" || test -z "$srcdir"; then - echo "please supply infile and srcdir" + echo "please supply infile and srcdir" >&2 exit 1 fi |