mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 15:40:11 +01:00
Create $(TOP)/$(LIB_DIR) for install, too
If `make install' is run without running `make' first, the $(LIB_DIR) will not be created. This also changes the mkdir a little bit so that it isn't run if necessary and added `-p' so that it is immune to races.
This commit is contained in:
parent
464c585681
commit
8319f2f326
1 changed files with 2 additions and 2 deletions
|
|
@ -21,7 +21,7 @@ subdirs:
|
|||
fi \
|
||||
done
|
||||
|
||||
install:
|
||||
install: $(TOP)/$(LIB_DIR)
|
||||
@for dir in $(SUBDIRS) ; do \
|
||||
if [ -d $$dir ] ; then \
|
||||
(cd $$dir && $(MAKE) install) || exit 1 ; \
|
||||
|
|
@ -29,7 +29,7 @@ install:
|
|||
done
|
||||
|
||||
$(TOP)/$(LIB_DIR):
|
||||
-mkdir $(TOP)/$(LIB_DIR)
|
||||
-@test -d $(TOP)/$(LIB_DIR) || mkdir -p $(TOP)/$(LIB_DIR)
|
||||
|
||||
|
||||
clean:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue