From fdd320572a100d45feba4ea506359fb357679948 Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Sun, 29 Mar 2009 10:29:20 -0700 Subject: [PATCH] build: Create $(LIB_DIR) before we get descend into $(SRC_DIRS) Avoid a potential race between creating libGL and installing the containing directory. It's unlikely, but could happen. Fixes bug 20934. Signed-off-by: Dan Nicholson --- src/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/Makefile b/src/Makefile index 4f65da0..d49107a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -14,7 +14,7 @@ message: @echo "Making sources for" $(CONFIG_NAME) -subdirs: +subdirs: $(TOP)/$(LIB_DIR) @for dir in $(SUBDIRS) ; do \ if [ -d $$dir ] ; then \ (cd $$dir && $(MAKE)) || exit 1; \ -- 1.6.0.6