diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2002-10-28 13:27:10 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2002-10-28 13:27:10 +0000 |
commit | 5facffec3fa4f7a9f57599764513721ba96daa21 (patch) | |
tree | e51acee6baf71212995c1e9fdc41a4936f19a7fb | |
parent | 7e4480dd9719f3efcd1adaf3fbf9439d485e50e4 (diff) | |
download | xine-lib-5facffec3fa4f7a9f57599764513721ba96daa21.tar.gz xine-lib-5facffec3fa4f7a9f57599764513721ba96daa21.tar.bz2 |
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
-rw-r--r-- | src/xine-engine/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
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 |