Re: [HACKERS] %ENV warnings during builds

2011-07-05 Thread Brar Piening
schrieb Andrew Dunstan: Hmm, I missed that you had done this. Here are two replacement perl scripts I knocked up, but haven't yet tested. One of the things about them is that they remove knowledge of particular .l and .y files. and instead get the required invocation options from the relevant

Re: [HACKERS] %ENV warnings during builds

2011-07-05 Thread Magnus Hagander
On Mon, Jul 4, 2011 at 23:30, Andrew Dunstan and...@dunslane.net wrote: On 07/03/2011 05:14 PM, Brar Piening wrote: schrieb Magnus Hagander: I think you've stumbled on just about all the bits of the MSVC build system we haven't perlized. Maybe we should complete that task, and turn

Re: [HACKERS] %ENV warnings during builds

2011-07-05 Thread Andrew Dunstan
On 07/05/2011 02:30 AM, Brar Piening wrote: schrieb Andrew Dunstan: Hmm, I missed that you had done this. Here are two replacement perl scripts I knocked up, but haven't yet tested. One of the things about them is that they remove knowledge of particular .l and .y files. and instead get the

Re: [HACKERS] %ENV warnings during builds

2011-07-05 Thread Brar Piening
Original Message Subject: Re: [HACKERS] %'ENV warnings during builds From: Andrew Dunstan and...@dunslane.net To: Brar Piening b...@gmx.de Date: 05.07.2011 17:25 Try attached instead. I can confirm that this version of pgflex.pl works as expected in my environment

Re: [HACKERS] %ENV warnings during builds

2011-07-04 Thread Andrew Dunstan
On 07/03/2011 05:14 PM, Brar Piening wrote: schrieb Magnus Hagander: I think you've stumbled on just about all the bits of the MSVC build system we haven't perlized. Maybe we should complete that task, and turn clean.bat, pgbison.bat and pgflex.bat into pure one-line wrappers. (It was done

[HACKERS] %ENV warnings during builds

2011-07-03 Thread Craig Ringer
Hi folks It looks like pgflex.bat and pgbison.bat in the win32 build files would benefit from a tweak to eliminate a complaint from Perl. Perl emits the error: Hash %ENV missing the % in argument 1 of each() at -e line 1 on the lines that process buildenv.pl. This is because % in batch

Re: [HACKERS] %ENV warnings during builds

2011-07-03 Thread Andrew Dunstan
On Sun, July 3, 2011 8:14 am, Craig Ringer wrote: Hi folks It looks like pgflex.bat and pgbison.bat in the win32 build files would benefit from a tweak to eliminate a complaint from Perl. Perl emits the error: Hash %ENV missing the % in argument 1 of each() at -e line 1 on the lines

Re: [HACKERS] %ENV warnings during builds

2011-07-03 Thread Peter Eisentraut
On sön, 2011-07-03 at 20:14 +0800, Craig Ringer wrote: It looks like pgflex.bat and pgbison.bat in the win32 build files would benefit from a tweak to eliminate a complaint from Perl. Perl emits the error: Hash %ENV missing the % in argument 1 of each() at -e line 1 on the lines

Re: [HACKERS] %ENV warnings during builds

2011-07-03 Thread Magnus Hagander
On Sun, Jul 3, 2011 at 13:06, Andrew Dunstan and...@dunslane.net wrote: On Sun, July 3, 2011 8:14 am, Craig Ringer wrote: Hi folks It looks like pgflex.bat and pgbison.bat in the win32 build files would benefit from a tweak to eliminate a complaint from Perl. Perl emits the error:    Hash

Re: [HACKERS] %ENV warnings during builds

2011-07-03 Thread Andrew Dunstan
On Sun, July 3, 2011 8:54 am, Peter Eisentraut wrote: On sön, 2011-07-03 at 20:14 +0800, Craig Ringer wrote: It looks like pgflex.bat and pgbison.bat in the win32 build files would benefit from a tweak to eliminate a complaint from Perl. Perl emits the error: Hash %ENV missing the % in

Re: [HACKERS] %ENV warnings during builds

2011-07-03 Thread Brar Piening
schrieb Magnus Hagander: I think you've stumbled on just about all the bits of the MSVC build system we haven't perlized. Maybe we should complete that task, and turn clean.bat, pgbison.bat and pgflex.bat into pure one-line wrappers. (It was done for builddoc just a few weeks ago). Yeah, give