Commit e2ea67fb authored by Sam Hocevar's avatar Sam Hocevar

* Makefile.am: create directories before installing stuff in them.

  * m4/Makefile.am: distribute our generated private.m4 file.
parent d9328c1e
...@@ -374,10 +374,10 @@ endif ...@@ -374,10 +374,10 @@ endif
# Install the modules and the symlinks # Install the modules and the symlinks
install-exec-local: install-exec-local:
for i in "" `$(srcdir)/vlc-config --target plugin` ; do if test -n "$$i" ; then \ 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 fi ; done
for i in "" `$(srcdir)/vlc-config --target builtin` `$(srcdir)/vlc-config --target builtin pic` ; do if test -n "$$i" ; then \ 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 fi ; done
for i in "" $(ALIASES) ; do if test -n "$$i" ; then \ for i in "" $(ALIASES) ; do if test -n "$$i" ; then \
rm -f "$(DESTDIR)$(bindir)/$$i" && \ rm -f "$(DESTDIR)$(bindir)/$$i" && \
...@@ -396,8 +396,8 @@ VLC.app: vlc plugins ...@@ -396,8 +396,8 @@ VLC.app: vlc plugins
$(INSTALL) vlc $(srcdir)/VLC.app/Contents/MacOS/VLC $(INSTALL) vlc $(srcdir)/VLC.app/Contents/MacOS/VLC
$(INSTALL) -d $(srcdir)/VLC.app/Contents/MacOS/modules $(INSTALL) -d $(srcdir)/VLC.app/Contents/MacOS/modules
for i in "" `$(srcdir)/vlc-config --target plugin` ; do \ for i in "" `$(srcdir)/vlc-config --target plugin` ; do \
if test -n "$$i" ; then $(INSTALL) $(srcdir)/$$i$(LIBEXT) \ if test -n "$$i" ; then $(INSTALL) "$(srcdir)/$$i$(LIBEXT)" \
$(srcdir)/VLC.app/Contents/MacOS/modules/ ; \ "$(srcdir)/VLC.app/Contents/MacOS/modules" ; \
fi ; done fi ; done
$(INSTALL) -d $(srcdir)/VLC.app/Contents/MacOS/share $(INSTALL) -d $(srcdir)/VLC.app/Contents/MacOS/share
$(INSTALL) -m 644 $(srcdir)/share/*.psf $(srcdir)/share/*.rle \ $(INSTALL) -m 644 $(srcdir)/share/*.psf $(srcdir)/share/*.rle \
......
...@@ -14,6 +14,7 @@ EXTRA_DIST = \ ...@@ -14,6 +14,7 @@ EXTRA_DIST = \
lib-ld.m4 \ lib-ld.m4 \
lib-link.m4 \ lib-link.m4 \
lib-prefix.m4 \ lib-prefix.m4 \
private.m4 \
progtest.m4 \ progtest.m4 \
stdint_h.m4 \ stdint_h.m4 \
uintmax_t.m4 \ uintmax_t.m4 \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment