From e2ea67fb37ada6b361c271f73570adef9edc0b84 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Fri, 27 Jun 2003 18:27:31 +0000 Subject: [PATCH] * Makefile.am: create directories before installing stuff in them. * m4/Makefile.am: distribute our generated private.m4 file. --- Makefile.am | 8 ++++---- m4/Makefile.am | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index e7d9fe7c08..4edf7e36a3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -374,10 +374,10 @@ endif # Install the modules and the symlinks install-exec-local: for i in "" `$(srcdir)/vlc-config --target plugin` ; do if test -n "$$i" ; then \ - $(INSTALL) -m 755 "$$i$(LIBEXT)" "$(DESTDIR)$(libdir)/vlc/`echo $$i | cut -f2 -d/`/" ; \ + $(INSTALL) -m 755 "$$i$(LIBEXT)" "$(DESTDIR)$(libdir)/vlc/`echo $$i | cut -f2 -d/`" ; \ fi ; done for i in "" `$(srcdir)/vlc-config --target builtin` `$(srcdir)/vlc-config --target builtin pic` ; do if test -n "$$i" ; then \ - $(INSTALL) -m 644 "$$i" "$(DESTDIR)$(libdir)/vlc/" ; \ + $(INSTALL) -m 644 "$$i" "$(DESTDIR)$(libdir)/vlc" ; \ fi ; done for i in "" $(ALIASES) ; do if test -n "$$i" ; then \ rm -f "$(DESTDIR)$(bindir)/$$i" && \ @@ -396,8 +396,8 @@ VLC.app: vlc plugins $(INSTALL) vlc $(srcdir)/VLC.app/Contents/MacOS/VLC $(INSTALL) -d $(srcdir)/VLC.app/Contents/MacOS/modules for i in "" `$(srcdir)/vlc-config --target plugin` ; do \ - if test -n "$$i" ; then $(INSTALL) $(srcdir)/$$i$(LIBEXT) \ - $(srcdir)/VLC.app/Contents/MacOS/modules/ ; \ + if test -n "$$i" ; then $(INSTALL) "$(srcdir)/$$i$(LIBEXT)" \ + "$(srcdir)/VLC.app/Contents/MacOS/modules" ; \ fi ; done $(INSTALL) -d $(srcdir)/VLC.app/Contents/MacOS/share $(INSTALL) -m 644 $(srcdir)/share/*.psf $(srcdir)/share/*.rle \ diff --git a/m4/Makefile.am b/m4/Makefile.am index 0ab4afdb0d..56b2a110f0 100644 --- a/m4/Makefile.am +++ b/m4/Makefile.am @@ -14,6 +14,7 @@ EXTRA_DIST = \ lib-ld.m4 \ lib-link.m4 \ lib-prefix.m4 \ + private.m4 \ progtest.m4 \ stdint_h.m4 \ uintmax_t.m4 \ -- 2.39.2