summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2006-07-27 08:52:10 +0000
committerfoobar <sniper@php.net>2006-07-27 08:52:10 +0000
commit95f2db24596ec7453e3a5fda329cf35aeb604b72 (patch)
treeb748d98b4f5e66a1cf3be2628ed22677209a484d /configure.in
parentf0fe4e05b91b5a6815ee056dee204262810b862f (diff)
downloadphp-git-95f2db24596ec7453e3a5fda329cf35aeb604b72.tar.gz
- Removed unnecessary quotes
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index f26f8849aa..0cb090bc6b 100644
--- a/configure.in
+++ b/configure.in
@@ -62,7 +62,7 @@ echo "#define PHP_MINOR_VERSION $MINOR_VERSION" >> php_version.h.new
echo "#define PHP_RELEASE_VERSION $RELEASE_VERSION" >> php_version.h.new
echo "#define PHP_EXTRA_VERSION \"$EXTRA_VERSION\"" >> php_version.h.new
echo "#define PHP_VERSION \"$PHP_VERSION\"" >> php_version.h.new
-echo "#define PHP_VERSION_ID \"$PHP_VERSION_ID\"" >> php_version.h.new
+echo "#define PHP_VERSION_ID $PHP_VERSION_ID" >> php_version.h.new
cmp php_version.h.new $srcdir/main/php_version.h >/dev/null 2>&1
if test $? -ne 0 ; then
rm -f $srcdir/main/php_version.h && mv php_version.h.new $srcdir/main/php_version.h && \