Browse Source

contrib: use our custom config.guess if it's present

When it's not forced to be created we may need to check
if the timestamp is older or not.
pull/163/head
Steve Lhomme 2 years ago
parent
commit
980c20db7f
  1. 6
      contrib/src/main.mak

6
contrib/src/main.mak

@ -450,9 +450,13 @@ UPDATE_AUTOCONFIG = for dir in $(AUTOMAKE_DATA_DIRS); do \
fi; \
done
ifneq ($(wildcard $(abspath $(VLC_TOOLS))/share/autoconf-vlc/build-aux),)
VLC_CONFIG_GUESS := autom4te_buildauxdir=$(abspath $(VLC_TOOLS))/share/autoconf-vlc/build-aux
endif
AUTORECONF = GTKDOCIZE=true autoreconf
RECONF = mkdir -p -- $(PREFIX)/share/aclocal && \
cd $< && $(AUTORECONF) -fiv
cd $< && $(VLC_CONFIG_GUESS) $(AUTORECONF) -fiv
BUILD_DIR = $</vlc_build
BUILD_SRC := ..

Loading…
Cancel
Save