[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: 1.8.0: $< in makefile w/o an implicit rule
From: |
Kevin Ryde |
Subject: |
Re: 1.8.0: $< in makefile w/o an implicit rule |
Date: |
Sat, 08 Jul 2006 08:32:13 +1000 |
User-agent: |
Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) |
Mike Gran <address@hidden> writes:
>
> In guile-core-1.8-20060705, in libguile/Makefile, the target for
> "version.h: version.h.in" uses the macro $< when there isn't an
> implicit rule defined. This doesn't work in OpenBSD and AIX make.
Thanks. The autoconf manual notes that too in fact.
> You could change the line "sed < $< > address@hidden" to "sed < version.h.in >
> $.tmp" perhaps.
I changed $< to $(srcdir)/version.h.in, which I think is the right
place to find that file.