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 28
28
# autoconf 2.68 or newer
29
29
ac_version=` $PHP_AUTOCONF --version 2> /dev/null| head -n 1| sed -e ' s/^[^0-9]*//' -e ' s/[a-z]* *$//' `
30
30
if test -z " $ac_version " ; then
31
- echo " buildconf: autoconf not found."
32
- echo " You need autoconf version 2.68 or newer installed"
33
- echo " to build PHP from Git."
31
+ echo " buildconf: autoconf not found." >&2
32
+ echo " You need autoconf version 2.68 or newer installed" >&2
33
+ echo " to build PHP from Git." >&2
34
34
exit 1
35
35
fi
36
36
IFS=.; set $ac_version ; IFS=' '
37
37
if test " $1 " = " 2" -a " $2 " -lt " 68" || test " $1 " -lt " 2" ; then
38
- echo " buildconf: autoconf version $ac_version found."
39
- echo " You need autoconf version 2.68 or newer installed"
40
- echo " to build PHP from Git."
38
+ echo " buildconf: autoconf version $ac_version found." >&2
39
+ echo " You need autoconf version 2.68 or newer installed" >&2
40
+ echo " to build PHP from Git." >&2
41
41
exit 1
42
42
else
43
43
echo " buildconf: autoconf version $ac_version (ok)"
Original file line number Diff line number Diff line change 12
12
shift
13
13
14
14
if test -z " $infile " || test -z " $srcdir " ; then
15
- echo " please supply infile and srcdir"
15
+ echo " please supply infile and srcdir" >&2
16
16
exit 1
17
17
fi
18
18
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ while test $# -gt 0; do
27
27
done
28
28
29
29
if test " $dev " = " 0" -a " $devok " = " 0" ; then
30
- echo " You should not run buildconf in a release package."
31
- echo " use buildconf --force to override this check."
30
+ echo " You should not run buildconf in a release package." >&2
31
+ echo " use buildconf --force to override this check." >&2
32
32
exit 1
33
33
fi
34
34
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