Commit 78c576d8 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

contrib: Fix build when there is no autoconf.

parent 0a55d75f
...@@ -38,10 +38,12 @@ all: $(TARGETALL) ...@@ -38,10 +38,12 @@ all: $(TARGETALL)
using-src: using-src:
$(MAKE) -C build-src $(MAKE) -C build-src
#Copy aclocal files # Copy aclocal files
# This is necessary for --missing aclocal to succeed after a # This is necessary for --missing aclocal to succeed after a
# configure.ac/Makefile.am change in the vlc root dir # configure.ac/Makefile.am change in the vlc root dir
cp -R $(PREFIX)/share/aclocal/* $(VLCROOTDIR)/m4 if test -e "$(PREFIX)/share/aclocal"; then \
cp -Rf $(PREFIX)/share/aclocal/* $(VLCROOTDIR)/m4; \
fi
ifdef HAVE_DARWIN_10 ifdef HAVE_DARWIN_10
(cd $(PREFIX)/lib && sed -e 's%/usr/lib/libiconv.la%$(PREFIX)/lib/libiconv.la%g' -i.orig *.la && rm -f *.la.orig) (cd $(PREFIX)/lib && sed -e 's%/usr/lib/libiconv.la%$(PREFIX)/lib/libiconv.la%g' -i.orig *.la && rm -f *.la.orig)
......
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