File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 31
31
# autoconf 2.59 or newer
32
32
ac_version=` $PHP_AUTOCONF --version 2> /dev/null| head -n 1| sed -e ' s/^[^0-9]*//' -e ' s/[a-z]* *$//' `
33
33
if test -z " $ac_version " ; then
34
- echo " buildconf: autoconf not found."
35
- echo " You need autoconf version 2.59 or newer installed"
36
- echo " to build PHP from Git."
34
+ echo " buildconf: autoconf not found." >&2
35
+ echo " You need autoconf version 2.59 or newer installed" >&2
36
+ echo " to build PHP from Git." >&2
37
37
exit 1
38
38
fi
39
39
IFS=.; set $ac_version ; IFS=' '
40
40
if test " $1 " = " 2" -a " $2 " -lt " 59" || test " $1 " -lt " 2" ; then
41
- echo " buildconf: autoconf version $ac_version found."
42
- echo " You need autoconf version 2.59 or newer installed"
43
- echo " to build PHP from Git."
41
+ echo " buildconf: autoconf version $ac_version found." >&2
42
+ echo " You need autoconf version 2.59 or newer installed" >&2
43
+ echo " to build PHP from Git." >&2
44
44
exit 1
45
45
else
46
46
echo " buildconf: autoconf version $ac_version (ok)"
Original file line number Diff line number Diff line change 13
13
shift
14
14
15
15
if test -z " $infile " || test -z " $srcdir " ; then
16
- echo " please supply infile and srcdir"
16
+ echo " please supply infile and srcdir" >&2
17
17
exit 1
18
18
fi
19
19
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ while test $# -gt 0; do
28
28
done
29
29
30
30
if test " $dev " = " 0" -a " $devok " = " 0" ; then
31
- echo " You should not run buildconf in a release package."
32
- echo " use buildconf --force to override this check."
31
+ echo " You should not run buildconf in a release package." >&2
32
+ echo " use buildconf --force to override this check." >&2
33
33
exit 1
34
34
fi
35
35
Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ DIR=php-$VER
65
65
DIRPATH=$MY_OLDPWD /$DIR
66
66
67
67
if test -d " $DIRPATH " ; then
68
- echo " The directory $DIR "
69
- echo " already exists, rename or remove it and run makedist again."
68
+ echo " The directory $DIR " >&2
69
+ echo " already exists, rename or remove it and run makedist again." >&2
70
70
exit 1
71
71
fi
72
72
You can’t perform that action at this time.
0 commit comments