1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 04:10:18 +02:00

build: Fix out-of-source-tree installation of libguile-2.0-gdb.scm.

* libguile/Makefile.am (install-data-local): Use $< instead of just
  libguile-2.0-gdb.scm.  Quote file names in $(INSTALL_DATA) invocation.
This commit is contained in:
Ludovic Courtès 2014-02-27 14:14:21 +01:00
parent ae8d8a84ef
commit a8b80d6b29

View file

@ -468,10 +468,10 @@ install-data-local: libguile-2.0-gdb.scm
esac; \ esac; \
done; \ done; \
cd $$here; \ cd $$here; \
echo " $(INSTALL_DATA) libguile-2.0-gdb.scm \ echo " $(INSTALL_DATA) $< \
$(DESTDIR)$(libdir)/$$libname-gdb.scm"; \ $(DESTDIR)$(libdir)/$$libname-gdb.scm"; \
$(INSTALL_DATA) libguile-2.0-gdb.scm \ $(INSTALL_DATA) "$<" \
$(DESTDIR)$(libdir)/$$libname-gdb.scm "$(DESTDIR)$(libdir)/$$libname-gdb.scm"
## This is kind of nasty... there are ".c" files that we don't want to ## This is kind of nasty... there are ".c" files that we don't want to
## compile, since they are #included. So instead we list them here. ## compile, since they are #included. So instead we list them here.