Thread: fix for ccsym

fix for ccsym

From
Bruce Momjian
Date:
I have no idea why this line in ccsym has that test "2.7.2.1":

!         -A*) test "2.7.2.1" && echo "$i" | sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;

This patch removes it.

--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
Index: src/tools/ccsym
===================================================================
RCS file: /cvsroot/pgsql-server/src/tools/ccsym,v
retrieving revision 1.5
diff -c -c -r1.5 ccsym
*** src/tools/ccsym    15 Mar 1998 08:33:58 -0000    1.5
--- src/tools/ccsym    24 Oct 2003 21:26:46 -0000
***************
*** 8,13 ****
  do
          case "$i" in
          -D*) echo "$i" | sed 's/^-D//';;
!         -A*) test "2.7.2.1" && echo "$i" | sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;
          esac
  done
--- 8,13 ----
  do
          case "$i" in
          -D*) echo "$i" | sed 's/^-D//';;
!         -A*) echo "$i" | sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;
          esac
  done