diff options
author | Sascha Schumann <sas@php.net> | 2002-03-04 08:28:57 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-03-04 08:28:57 +0000 |
commit | c8e453c060987f2e34fdf439235b96329bb1b4a4 (patch) | |
tree | fb9e5f1bc342cf9efa545b576529c8ef52737901 /build | |
parent | a2065b8743808235f3f81cbb11a9dd0ea13988e3 (diff) | |
download | php-git-c8e453c060987f2e34fdf439235b96329bb1b4a4.tar.gz |
Remove note, suppress warning
Diffstat (limited to 'build')
-rw-r--r-- | build/build2.mk | 2 | ||||
-rwxr-xr-x | build/buildcheck.sh | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/build/build2.mk b/build/build2.mk index 1653fea548..4954991c45 100644 --- a/build/build2.mk +++ b/build/build2.mk @@ -60,7 +60,7 @@ $(makefile_in_files): $(makefile_am_files) aclocal.m4 configure.in $(config_m4_f aclocal.m4: configure.in acinclude.m4 dynlib.m4 aclocal 2>&1 | $(SUPPRESS_WARNINGS) -SUPPRESS_WARNINGS = (egrep -v '(AC_TRY_RUN called without default to allow cross compiling|AC_PROG_CXXCPP was called before AC_PROG_CXX|.*AM_PROG_LEX.*|defined in acinclude.m4 but never used|AC_PROG_LEX invoked multiple times)'||true) +SUPPRESS_WARNINGS = (egrep -v '(AC_TRY_RUN called without default to allow cross compiling|AC_PROG_CXXCPP was called before AC_PROG_CXX|.*AM_PROG_LEX.*|defined in acinclude.m4 but never used|AC_PROG_LEX invoked multiple times|AC_PROG_CPP called before)'||true) $(config_h_in): configure acconfig.h # explicitly remove target since autoheader does not seem to work diff --git a/build/buildcheck.sh b/build/buildcheck.sh index 192f601134..3d075646f1 100755 --- a/build/buildcheck.sh +++ b/build/buildcheck.sh @@ -16,7 +16,7 @@ # | Sascha Schumann <sascha@schumann.cx> | # +----------------------------------------------------------------------+ # -# $Id: buildcheck.sh,v 1.15 2002-03-03 23:03:34 zak Exp $ +# $Id: buildcheck.sh,v 1.16 2002-03-04 08:28:57 sas Exp $ # echo "buildconf: checking installation..." @@ -37,9 +37,6 @@ echo " to build PHP from CVS." exit 1 else echo "buildconf: autoconf version $ac_version (ok)" -echo "**Note: Certain versions of autoconf may generate the warning:" -echo " 'AC_PROG_CPP called before AC_PROG_CC'" -echo " This error message is expected and can usually be ignored." fi |