diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-05-16 02:14:15 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-05-16 02:14:15 +0000 |
commit | 6dd06737bad7fcc6b791efa975438c7237fe7d26 (patch) | |
tree | e3bcf88fdcaa993721121e244638797dacf18468 /src/backend | |
parent | 33bb1aee91f775f7bae071a10f0d6b40cd2f119d (diff) | |
download | postgresql-6dd06737bad7fcc6b791efa975438c7237fe7d26.tar.gz postgresql-6dd06737bad7fcc6b791efa975438c7237fe7d26.zip |
Remove configure check for how to abbreviate 'tr A-Z a-z', and instead
just use the portable form,
tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
There were a bunch of places that weren't paying attention to configure's
result anyway (including configure itself!?); clean them up too.
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/utils/Gen_fmgrtab.sh.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/utils/Gen_fmgrtab.sh.in b/src/backend/utils/Gen_fmgrtab.sh.in index bae140d28f1..1f2e7f82ed8 100644 --- a/src/backend/utils/Gen_fmgrtab.sh.in +++ b/src/backend/utils/Gen_fmgrtab.sh.in @@ -8,7 +8,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.19 2000/01/11 01:42:08 tgl Exp $ +# $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.20 2000/05/16 02:14:14 tgl Exp $ # # NOTES # Passes any -D options on to cpp prior to generating the list @@ -83,7 +83,7 @@ cat > $HFILE <<FuNkYfMgRsTuFf * * Copyright (c) 1994, Regents of the University of California * - * $Id: Gen_fmgrtab.sh.in,v 1.19 2000/01/11 01:42:08 tgl Exp $ + * $Id: Gen_fmgrtab.sh.in,v 1.20 2000/05/16 02:14:14 tgl Exp $ * * NOTES * ****************************** @@ -171,7 +171,7 @@ FmgrInfo *fmgr_pl_finfo; */ FuNkYfMgRsTuFf -@TR@ @TRARGS@ < $RAWFILE | \ +tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' < $RAWFILE | \ awk ' BEGIN { OFS = ""; } { if (seenit[$2]++ == 0) print "#define F_", $2, " ", $1; }' >> $HFILE @@ -197,7 +197,7 @@ cat > $TABCFILE <<FuNkYfMgRtAbStUfF * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.19 2000/01/11 01:42:08 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.20 2000/05/16 02:14:14 tgl Exp $ * * NOTES * |