diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2002-10-28 12:54:00 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2002-10-28 12:54:00 +0000 |
commit | b2d8b6c801e19a8eaeb0b690c193fcd50bfcb327 (patch) | |
tree | ff92cc8324ff3cbbf0982e0c4c890a0fe665a19a | |
parent | 316cb8a157dd55fda5e43fc6884e7bed5d334597 (diff) | |
download | xine-lib-b2d8b6c801e19a8eaeb0b690c193fcd50bfcb327.tar.gz xine-lib-b2d8b6c801e19a8eaeb0b690c193fcd50bfcb327.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 source file name.
CVS patchset: 3065
CVS date: 2002/10/28 12:54:00
-rw-r--r-- | src/xine-utils/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
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 |