From 370b7a0d2fdf7f322b59f3c35c1cea19901ef2f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Tue, 6 Nov 2012 09:10:23 +0100 Subject: [PATCH] completions/Makefile.am: symlinks depends on $(DATA) to avoid race conditions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit error message was: | ln: failed to create symbolic link `/home/andreas/tmp/oe-core-eglibc/work/all-angstrom-linux/bash-completion-2.0-r0/image/usr/share/bash-completion/completions/aclocal-1.11': No such file or directory | make[2]: *** [symlinks] Error 1 | make[2]: *** Waiting for unfinished jobs.... Signed-off-by: Andreas Müller --- completions/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completions/Makefile.am b/completions/Makefile.am index 5f63e35b..572b7d6c 100644 --- a/completions/Makefile.am +++ b/completions/Makefile.am @@ -550,7 +550,7 @@ CLEANFILES = \ xvnc4viewer \ ypcat -symlinks: $(targetdir) +symlinks: $(targetdir) $(DATA) for file in aclocal-1.11 ; do \ rm -f $(targetdir)/$$file && \ $(LN_S) aclocal $(targetdir)/$$file ; \