Re: Force a file to be compiled always

2010-11-07 Thread Benjamin Bihler
Hi Ralf, excuse me, I have sent this mail twice but in the mailing list the body seems to be empty. I will try it a last time with another method... >> your first suggestion (with the phony target) works great. The second one >> does not force compilation here (but that doesn't matter anymore si

Re: Force a file to be compiled always

2010-11-07 Thread Benjamin Bihler
Hi Ralf, excuse me, I have sent this mail twice but in the mailing list the body seems to be empty. I will try it a last time with another method... >> your first suggestion (with the phony target) works great. The second one >> does not force compilation here (but that doesn't matter anymore si

Re: Question about automake fails to pass the correct parameters to pax when using large UID/GID

2010-11-07 Thread xufeng zhang
On 11/08/2010 03:03 PM, Dave Hart wrote: On Mon, Nov 8, 2010 at 6:56 AM, xufeng zhang wrote: On 10/30/2010 03:37 PM, Ralf Wildenhues wrote: I don't think there is much that can be done about this in Automake, as [...] If you still think that Automake is in the position

Re: Question about automake fails to pass the correct parameters to pax when using large UID/GID

2010-11-07 Thread Dave Hart
On Mon, Nov 8, 2010 at 6:56 AM, xufeng zhang wrote: > On 10/30/2010 03:37 PM, Ralf Wildenhues wrote: >> I don't think there is much that can be done about this in Automake, as [...] >> If you still think that Automake is in the position to do something >> about this, then please provide more detai

Re: Question about automake fails to pass the correct parameters to pax when using large UID/GID

2010-11-07 Thread xufeng zhang
On 10/30/2010 03:37 PM, Ralf Wildenhues wrote: Hello Xufeng Zhang, thanks for the report. * xufeng zhang wrote on Wed, Oct 27, 2010 at 05:24:18AM CEST: I'm a developer from WindRiver, and I have a question about automake. When I using a large UID/GID(>2097151) to configure and build a linu

Re: [Vala] automake 1.11.1: unable to build vala project out-of-tree

2010-11-07 Thread Andrey Borzenkov
On Sat, Nov 6, 2010 at 10:23 PM, Abderrahim Kitouni wrote: > Hi, >                في س، 06-11-2010 عند 18:46 +0300 ، كتب Andrey Borzenkov: >> I'm trying to rebuild systemd >> (http://www.freedesktop.org/wiki/Software/systemd) from GIT. It is >> using several programs built using vala; in-tree buil

Re: [Vala] automake 1.11.1: unable to build vala project out-of-tree

2010-11-07 Thread Abderrahim Kitouni
Hi, في س، 06-11-2010 عند 18:46 +0300 ، كتب Andrey Borzenkov: > I'm trying to rebuild systemd > (http://www.freedesktop.org/wiki/Software/systemd) from GIT. It is > using several programs built using vala; in-tree build is OK, > out-of-tree build fails: Automake assumes the .c files

automake 1.11.1: unable to build vala project out-of-tree

2010-11-07 Thread Andrey Borzenkov
I'm trying to rebuild systemd (http://www.freedesktop.org/wiki/Software/systemd) from GIT. It is using several programs built using vala; in-tree build is OK, out-of-tree build fails: {pts/0}% LC_ALL=C make make all-am make[1]: Entering directory `/home/bor/build/systemd' make[1]: *** No rule to

Re: adding conditionally a c++ file implies static linking with g++

2010-11-07 Thread Vincent Torri
On Sun, 7 Nov 2010, Ralf Wildenhues wrote: Hi Vincent, * Vincent Torri wrote on Fri, Nov 05, 2010 at 04:56:55PM CET: foo_SOURCES = bar1.c if MY_COND foo_SOURCES += bar2.cpp else foo_SOURCES += bar2.c endif One told me on that ML that it is normal that automake uses g++ for linking, even if

Re: adding conditionally a c++ file implies static linking with g++

2010-11-07 Thread Ralf Wildenhues
Hi Vincent, * Vincent Torri wrote on Fri, Nov 05, 2010 at 04:56:55PM CET: > foo_SOURCES = bar1.c > > if MY_COND > foo_SOURCES += bar2.cpp > else > foo_SOURCES += bar2.c > endif > > One told me on that ML that it is normal that automake uses g++ for > linking, even if MY_COND is not verified. One