[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: make dist fails for EXTRA_DIST elements
From: |
Andy Falanga (afalanga) |
Subject: |
RE: make dist fails for EXTRA_DIST elements |
Date: |
Tue, 10 Mar 2015 14:37:17 +0000 |
> -----Original Message-----
> From: Peter Johansson [mailto:address@hidden
> Sent: Monday, March 09, 2015 5:40 PM
> To: Andy Falanga (afalanga); address@hidden
> Subject: Re: make dist fails for EXTRA_DIST elements
>
> Hi Andy,
>
> On 03/10/2015 08:23 AM, Andy Falanga (afalanga) wrote:
> > I try taking out the *.cpp file and try again with the same error but
> with the *.h. If I take out the *.h file, all is well again and "make
> dist" is happy and fine. Why is it picky with files ending with *.cpp
> and *.h if these things are extra to the distribution and have nothing
> to do with the build anyway?
>
> You tell Automake that files 'path/to/WindowsSource.cpp' and
> 'path/to/WindowsSource.h' should be included in the dist tarball. When
> make can't find the files and no rules to create the files, it aborts.
> That is as expected.
>
Peter,
Thanks for the response. I did figure this out and, as you might have
expected, the problem was between the keyboard and chair. I did have the path
correct, but the path wasn't correct relative to the directory in which make
was at the time of invocation. Thus, the error. I kept missing it because the
path *was correct*, but not correct for usage.
Thanks,
Andy