OSDN Git Service

Create $(TOP)/$(LIB_DIR) for install, too
authorDan Nicholson <dbn.lists@gmail.com>
Mon, 23 Jun 2008 03:19:35 +0000 (20:19 -0700)
committerBrian Paul <brian.paul@tungstengraphics.com>
Mon, 23 Jun 2008 14:14:49 +0000 (08:14 -0600)
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.

src/Makefile

index f93987e..fab0069 100644 (file)
@@ -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: