From 3ee5c978efcd41bdb839c959655f175935bfee87 Mon Sep 17 00:00:00 2001 From: Giovanni Bussi <giovanni.bussi@gmail.com> Date: Fri, 3 May 2013 14:36:36 +0200 Subject: [PATCH] Small fix I think I fixed the problem that sometime leads to errors in builds with a lot of cpus (make -j 12) --- src/maketools/make.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/maketools/make.module b/src/maketools/make.module index 1cd4023cd..8957c52f5 100644 --- a/src/maketools/make.module +++ b/src/maketools/make.module @@ -33,7 +33,7 @@ all: links: Makefile @echo Create links to modules used in $(CURDIR) to simplify header inclusion: - @for dir in $(USE) ; do test -L $$dir || ln -s ../$$dir . && echo " " $$dir ; done + @for dir in $(USE) ; do test -L $$dir || ln -fs ../$$dir . && echo " " $$dir ; done @echo Touching a file used to track links update touch links @echo Acting recursively -- GitLab