[RFA/C] Break out C options into a separate file

Neil Booth neil@daikokuya.co.uk
Sun Jun 1 13:20:00 GMT 2003


Andreas Tobler wrote:-

> Neil Booth wrote:
> 
> >Index: opts.sh
> >===================================================================
> >RCS file: opts.sh
> >diff -N opts.sh
> >--- /dev/null	1 Jan 1970 00:00:00 -0000
> >+++ opts.sh	22 May 2003 19:51:37 -0000
> 
> >+AWK=/usr/bin/awk
> >+SORT=/usr/bin/sort
> 
> Just for the record, my ppc linux box has sort under /bin. So a 
> bootstrap fails here unless I symlink around.

I've applied this.

Neil.

	* opts.sh: Remove path from sort.

Index: opts.sh
===================================================================
RCS file: /cvs/gcc/gcc/gcc/opts.sh,v
retrieving revision 1.1
diff -u -p -r1.1 opts.sh
--- opts.sh	31 May 2003 21:18:21 -0000	1.1
+++ opts.sh	1 Jun 2003 13:19:01 -0000
@@ -20,7 +20,7 @@
 # Usage: opts.sh outfile.c outfile.h file1.opt [file2.opt, ...]
 
 AWK=/usr/bin/awk
-SORT=/usr/bin/sort
+SORT=sort		# Could be /bin/sort or /usr/bin/sort
 
 C_FILE=$1; shift
 H_FILE=$1; shift



More information about the Gcc-patches mailing list