How do I tell what arguments were given to configure?

2009-04-06 Thread Paul Hoffman
Greetings again. I am trying to trace down a bug that I think is happening in a 
port. I have captured the output of make, but I don't see in it what 
arguments are being given to the port's configure script. Where do I find 
that?
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: How do I tell what arguments were given to configure?

2009-04-06 Thread Alexey V. Degtyarev

 Hi Paul,

 make -V CONFIGURE_ARGS

 and

 make -V CONFIGURE_ENV

 within port's directory will show you arguments passed to configure
 script and environment variables to be set respectively.

 Greetings again. I am trying to trace down a bug that I think is
 happening in a port. I have captured the output of make, but I don't
 see in it what arguments are being given to the port's configure
 script. Where do I find that?

-- 
Alexey V. Degtyarev
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: How do I tell what arguments were given to configure?

2009-04-06 Thread Cezary Morga
Paul Hoffman wrote:
 Greetings again. I am trying to trace down a bug that I think is happening
 in a port. I have captured the output of make, but I don't see in it what
 arguments are being given to the port's configure script. Where do I find
 that?

make -dl configure or
make -n configure
-- 
Cezary Morga
I've wrestled with reality for 35 years, Doctor, and I'm happy to state I 
finally won out over it. (Mary Chase)

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: How do I tell what arguments were given to configure?

2009-04-06 Thread Koop Mast
On Mon, 2009-04-06 at 12:44 -0700, Paul Hoffman wrote:
 Greetings again. I am trying to trace down a bug that I think is happening in 
 a port. I have captured the output of make, but I don't see in it what 
 arguments are being given to the port's configure script. Where do I find 
 that?

Go into work/${Portname} and check config.log

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: How do I tell what arguments were given to configure?

2009-04-06 Thread Maciej Suszko
Paul Hoffman phoff...@proper.com wrote:
 Greetings again. I am trying to trace down a bug that I think is
 happening in a port. I have captured the output of make, but I
 don't see in it what arguments are being given to the port's
 configure script. Where do I find that?

From within port directory:
make -C . -V CONFIGURE_ARGS
-- 
regards, Maciej Suszko.


signature.asc
Description: PGP signature


Re: How do I tell what arguments were given to configure?

2009-04-06 Thread Paul Hoffman
Thanks for all the replies. I was, in fact, able to determine that the 
configuration arguments for this port are broken, and have submitted a bug 
report with the fix.

FWIW, the port is lang/python30. It is *not* built with UCS-4 support even when 
you tell it to be due to bad config arguments.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: How do I tell what arguments were given to configure?

2009-04-06 Thread Steve Polyack

Paul Hoffman wrote:

Greetings again. I am trying to trace down a bug that I think is happening in a port. I have 
captured the output of make, but I don't see in it what arguments are being given to 
the port's configure script. Where do I find that?
  
You can either examine the port's Makefile to determine what options it 
passes to the configure script, or you can check config.log in the work 
directory:


[/usr/ports/lang/php5/work/php-5.2.9]$ head config.log | grep ./configure
 $ ./configure --with-layout=GNU 
--with-config-file-scan-dir=/usr/local/etc/php --disable-all 
--enable-libxml --with-libxml-dir=/usr/local --enable-reflection 
--program-prefix= --disable-cgi --with-regex=php --with-zend-vm=CALL 
--prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info/ 
--build=i386-portbld-freebsd7.1


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org