rpms/postgresql/devel pgtcl-quote.patch, NONE, 1.1 postgresql.spec, 1.62, 1.63

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Mon Jan 9 17:59:40 UTC 2006


Author: tgl

Update of /cvs/dist/rpms/postgresql/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv9194

Modified Files:
	postgresql.spec 
Added Files:
	pgtcl-quote.patch 
Log Message:
Repair extraneous quote in pgtcl configure script ... odd that bash
didn't use to spit up on this.

pgtcl-quote.patch:
 aclocal.m4       |    2 +-
 tclconfig/tcl.m4 |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

--- NEW FILE pgtcl-quote.patch ---
Remove extraneous quotes from pgtcl configure script.  bash 3.1 fails on
this, though curiously it seems not to bother prior versions.
Note we don't bother to patch the configure file itself, since we'll
regenerate it during the build.

Upstream bug report for this filed as
http://gborg.postgresql.org/project/pgtclng/bugs/bugupdate.php?1500


diff -Naur Pgtcl.orig/aclocal.m4 Pgtcl/aclocal.m4
--- Pgtcl.orig/aclocal.m4	2004-02-15 15:15:37.000000000 -0500
+++ Pgtcl/aclocal.m4	2006-01-09 12:21:32.000000000 -0500
@@ -145,7 +145,7 @@
 	    # results, and the version is kept in special file).
 	
 	    if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
-		system=MP-RAS-`awk '{print $3}' /etc/.relid'`
+		system=MP-RAS-`awk '{print $3}' /etc/.relid`
 	    fi
 	    if test "`uname -s`" = "AIX" ; then
 		system=AIX-`uname -v`.`uname -r`
diff -Naur Pgtcl.orig/tclconfig/tcl.m4 Pgtcl/tclconfig/tcl.m4
--- Pgtcl.orig/tclconfig/tcl.m4	2004-11-11 21:55:50.000000000 -0500
+++ Pgtcl/tclconfig/tcl.m4	2006-01-09 12:22:08.000000000 -0500
@@ -752,7 +752,7 @@
 	    # results, and the version is kept in special file).
 	
 	    if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
-		system=MP-RAS-`awk '{print $3}' /etc/.relid'`
+		system=MP-RAS-`awk '{print $3}' /etc/.relid`
 	    fi
 	    if test "`uname -s`" = "AIX" ; then
 		system=AIX-`uname -v`.`uname -r`
@@ -2012,7 +2012,7 @@
 	    # results, and the version is kept in special file).
 	
 	    if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
-		system=MP-RAS-`awk '{print $3}' /etc/.relid'`
+		system=MP-RAS-`awk '{print $3}' /etc/.relid`
 	    fi
 	    if test "`uname -s`" = "AIX" ; then
 		system=AIX-`uname -v`.`uname -r`


Index: postgresql.spec
===================================================================
RCS file: /cvs/dist/rpms/postgresql/devel/postgresql.spec,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- postgresql.spec	9 Jan 2006 01:14:36 -0000	1.62
+++ postgresql.spec	9 Jan 2006 17:59:35 -0000	1.63
@@ -109,6 +109,7 @@
 Patch4: postgresql-test.patch
 Patch5: pgtcl-no-rpath.patch
 Patch6: postgresql-perl-rpath.patch
+Patch7: pgtcl-quote.patch
 
 Buildrequires: perl glibc-devel bison flex autoconf
 Prereq: /sbin/ldconfig initscripts
@@ -329,6 +330,7 @@
 %patch4 -p1
 # patch5 is applied later
 %patch6 -p1
+# patch7 is applied later
 
 #call autoconf 2.53 or greater
 %aconfver
@@ -360,6 +362,7 @@
    mv $PGTCLDOCDIR Pgtcl-docs
 
 %patch5 -p0
+%patch7 -p0
    pushd Pgtcl
 %aconfver
    popd
@@ -816,8 +819,10 @@
 %endif
 
 %changelog
-* Sun Jan  8 2006 Tom Lane <tgl at redhat.com> 8.1.2-1
+* Mon Jan  9 2006 Tom Lane <tgl at redhat.com> 8.1.2-1
 - Update to PostgreSQL 8.1.2
+- Repair extraneous quote in pgtcl configure script ... odd that bash
+  didn't use to spit up on this.
 
 * Thu Dec 15 2005 Tom Lane <tgl at redhat.com> 8.1.1-3
 - fix pg_config.h for 64-bit and ppc platforms




More information about the fedora-cvs-commits mailing list