1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Fix `.go' compilation for $(builddir) != $(srcdir).

* am/guilec (.scm.go): Use "-o $@" to make sure the output file ends up
  in $(builddir).
This commit is contained in:
Ludovic Courtès 2009-02-21 00:47:59 +01:00
parent 73f4d8d1d2
commit e9c5639d48

View file

@ -8,4 +8,4 @@ CLEANFILES = $(GOBJECTS)
SUFFIXES = .scm .go SUFFIXES = .scm .go
.scm.go: .scm.go:
$(top_builddir)/pre-inst-guile-env $(top_builddir)/guile-tools compile $< $(top_builddir)/pre-inst-guile-env $(top_builddir)/guile-tools compile -o "$@" "$<"