From b2d8b6c801e19a8eaeb0b690c193fcd50bfcb327 Mon Sep 17 00:00:00 2001 From: Juergen Keil Date: Mon, 28 Oct 2002 12:54:00 +0000 Subject: Solaris' make cannot decide, whether the make variable 'include_HEADERS' has to contain relative or absolute pathnames, in a build with separate source and object directory hierarchies. Simply install the headers into the destination directory, and let the install program figure out the source file name. CVS patchset: 3065 CVS date: 2002/10/28 12:54:00 --- src/xine-utils/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/xine-utils/Makefile.am b/src/xine-utils/Makefile.am index 856ffc8f4..e7f5770b5 100644 --- a/src/xine-utils/Makefile.am +++ b/src/xine-utils/Makefile.am @@ -51,8 +51,8 @@ install-includeHEADERS: $(include_HEADERS) $(mkinstalldirs) $(DESTDIR)$(includedir)/xine @list='$(include_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \ - echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(includedir)/xine/$$p"; \ - $(INSTALL_DATA) $$d$$p $(DESTDIR)$(includedir)/xine/$$p; \ + echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(includedir)/xine/"; \ + $(INSTALL_DATA) $$d$$p $(DESTDIR)$(includedir)/xine/; \ done -- cgit v1.2.3