From 5facffec3fa4f7a9f57599764513721ba96daa21 Mon Sep 17 00:00:00 2001 From: Juergen Keil Date: Mon, 28 Oct 2002 13:27:10 +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 target filename from the source file name. CVS patchset: 3072 CVS date: 2002/10/28 13:27:10 --- src/xine-engine/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/xine-engine/Makefile.am b/src/xine-engine/Makefile.am index 634cb47ed..47bbb0807 100644 --- a/src/xine-engine/Makefile.am +++ b/src/xine-engine/Makefile.am @@ -47,8 +47,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