bug-guile
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ice-9 scrdir!=builddir


From: Marius Vollmer
Subject: Re: ice-9 scrdir!=builddir
Date: 06 Oct 2001 00:46:29 +0200
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.0.102

Thien-Thi Nguyen <address@hidden> writes:

>    From: "Golubev I. N." <address@hidden>
>    Date: Fri, 05 Oct 2001 16:47:29 (GMT)
> 
>    Yes, if `and-let-star-compat.scm' never ever will be generated in
>    build time (so that right version of it will appear in build dir).
> 
> from looking at the makefiles, i could not infer when (if ever)
> and-let-star-compat.scm would be generated, and so i've gone ahead and
> made the small change.  thanks for the report!

You could also  do it like this (untested, sorry):

    install-data-local: install-and-let

    install-and-let: and-let-star-compat.scm
        $(INSTALL_DATA) $< $(subpkgdatadir)/'and-let*.scm'

This will use the vpath to locate and-let-star-compat.scm.  (The extra
target is for easy generalization to multiple files.  One could also
use `$^' instead of individual targets when installing more than one
file in this manner, but I think `$^' is not portable to non-GNU
makes.)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]