Thien-Thi Nguyen wrote:
> () Marco Maggi
> () Mon, 24 Feb 2014 12:49:15 +0100
>I just want to strip the string prefix "lib/" from the
>installation pathnames.
> Maybe you can use a var that includes the trailing slash:
> intreelib = lib/
> ..._DATA = \
>$(intreelib)stuff/foo.fas
() Marco Maggi
() Mon, 24 Feb 2014 12:49:15 +0100
I just want to strip the string prefix "lib/" from the
installation pathnames.
Maybe you can use a var that includes the trailing slash:
intreelib = lib/
..._DATA = \
$(intreelib)stuff/foo.fasl
and then replace the usual "make inst
Ralf Corsepius wrote:
> On 02/24/2014 11:13 AM, Marco Maggi wrote:
>> Ralf Corsepius wrote:
>>> Do I understand correctly, your issue is installation dirs?
>>> In that case you can try to use a separate installation-dir
>>> variable. something along the lines of:
>>> mystuffdir =$(datadir)/stuff
>
On 02/24/2014 11:13 AM, Marco Maggi wrote:
Ralf Corsepius wrote:
Do I understand correctly, your issue is installation dirs?
In that case you can try to use a separate installation-dir
variable. something along the lines of:
mystuffdir =$(datadir)/stuff
datadir_stuff_DATA = lib/stuff/alpha.fasl
Ralf Corsepius wrote:
> Do I understand correctly, your issue is installation dirs?
> In that case you can try to use a separate installation-dir
> variable. something along the lines of:
> mystuffdir =$(datadir)/stuff
> datadir_stuff_DATA = lib/stuff/alpha.fasl
No. What I have now is:
bun
On 02/24/2014 10:01 AM, Marco Maggi wrote:
Ciao,
I am moving a package that compiles many source files to
many binary files, from "one Makefile.am per subdirectory"
to a single top level Makefile.am. Most of the thing has
gone fine (excluding the tedium of rechecking all the search
pa
Ciao,
I am moving a package that compiles many source files to
many binary files, from "one Makefile.am per subdirectory"
to a single top level Makefile.am. Most of the thing has
gone fine (excluding the tedium of rechecking all the search
paths).
This transition has introduced a