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 /buildconf | |
parent | 4be0528476763d8c6bfb7a47ad62278c187ef400 (diff) | |
download | php-git-9f5cb626ed4bede914b57ec8e233808030671ee5.tar.gz |
Fix #77041: buildconf should output error messages to stderr
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,8 +28,8 @@ while test $# -gt 0; do done if test "$dev" = "0" -a "$devok" = "0"; then - echo "You should not run buildconf in a release package." - echo "use buildconf --force to override this check." + echo "You should not run buildconf in a release package." >&2 + echo "use buildconf --force to override this check." >&2 exit 1 fi |