This is the mail archive of the
binutils@sources.redhat.com
mailing list for the binutils project.
Re: patch, ld AIX -blibpath -bnolibpath support
- From: Ian Lance Taylor <ian at airs dot com>
- To: Tom Rix <trix at redhat dot com>
- Cc: binutils at sources dot redhat dot com
- Date: 30 Apr 2002 17:46:18 -0700
- Subject: Re: patch, ld AIX -blibpath -bnolibpath support
- References: <3CCF35EC.F3242D79@redhat.com>
Tom Rix <trix@redhat.com> writes:
> + case OPTION_LIBPATH:
> + command_line_blibpath=optarg;
> + break;
> +
> + case OPTION_NOLIBPATH:
> + command_line_blibpath=NULL;
> + break;
> +
The GNU coding standard requires spaces around the `=' operators in
the above statements.
Ian