Make dist problems

2007-04-24 Thread Matí­as Alejandro Torres
Hi, I'm building a package using automake and here is the situation: - Libraries are built in the process, binaries too. - When I compile the package with `make` it works great. The package is compiled with the detected libraries (glib, gtk, etc, etc) - But when I do a `make dist` the package i

Re: Make dist problems

2007-04-24 Thread Ralf Wildenhues
Hello Matí-as, * Matí­as Alejandro Torres wrote on Tue, Apr 24, 2007 at 10:09:57PM CEST: > > I'm building a package using automake and here is the situation: > > - Libraries are built in the process, binaries too. > - When I compile the package with `make` it works great. The package is > compi

Re: Make dist problems

2007-04-24 Thread Matí­as Alejandro Torres
Well... problem solved. It was a typo, somehow you helped me anyway because if it wasn't for you i wouldn't find it. I'm sorry, Thanks. libcontacts_la_SOURCES = \ aboutdialog.c \ aboutdialog.h \ calendarentry.c \ calendarentry.h \ category.c \ category -> category.

Re: Make dist problems

2007-04-24 Thread Harlan Stenn
'make distcheck' can also be your friend. H