Commit da2bc8fd authored by Rafaël Carré's avatar Rafaël Carré Committed by Jean-Baptiste Kempf

UPDATE_AUTOCONFIG: use $(UNPACK_DIR)

We can't use $@ as we operate before the directory is renamed
(cherry picked from commit 7046b6122b7af1ca7bfa462f33a507959528cb9a)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 1cf012bc
......@@ -263,7 +263,7 @@ MOVE = mv $(UNPACK_DIR) $@ && touch $@
AUTOMAKE_DATA_DIRS=$(abspath $(dir $(shell which automake))/../share/automake*)
UPDATE_AUTOCONFIG = for dir in $(AUTOMAKE_DATA_DIRS); do \
if test -f "$${dir}/config.sub" -a -f "$${dir}/config.guess"; then \
cp "$${dir}/config.sub" "$${dir}/config.guess" $@; \
cp "$${dir}/config.sub" "$${dir}/config.guess" $(UNPACK_DIR); \
break; \
fi; \
done
......
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