From 12270e12498b9b9fc908e4279172803b030ae9d6 Mon Sep 17 00:00:00 2001 From: "Guillermo S. Romero" Date: Sat, 21 Jan 2012 23:56:56 +0100 Subject: [PATCH] dri: Use mkdir_p instead of MKDIR_P in Makefile.am files All other uses go with lowercase, but 3c87dfce to 49845f7b used uppercase, which seems to be not set, and thus broke compilation. Tested-by: Guillermo S. Romero --- src/mesa/drivers/dri/i915/Makefile.am | 2 +- src/mesa/drivers/dri/i965/Makefile.am | 2 +- src/mesa/drivers/dri/nouveau/Makefile.am | 2 +- src/mesa/drivers/dri/r200/Makefile.am | 2 +- src/mesa/drivers/dri/radeon/Makefile.am | 2 +- src/mesa/drivers/dri/swrast/Makefile.am | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/mesa/drivers/dri/i915/Makefile.am b/src/mesa/drivers/dri/i915/Makefile.am index 6bc7061..1670ac5 100644 --- a/src/mesa/drivers/dri/i915/Makefile.am +++ b/src/mesa/drivers/dri/i915/Makefile.am @@ -59,5 +59,5 @@ i915_dri_la_LIBADD = \ # Provide compatibility with scripts for the old Mesa build system for # a while by putting a link to the driver into /lib of the build tree. all-local: i915_dri.la - $(MKDIR_P) $(top_builddir)/$(LIB_DIR); + $(mkdir_p) $(top_builddir)/$(LIB_DIR); ln -f .libs/i915_dri.so $(top_builddir)/$(LIB_DIR)/i915_dri.so; diff --git a/src/mesa/drivers/dri/i965/Makefile.am b/src/mesa/drivers/dri/i965/Makefile.am index 5512381..e6d9494 100644 --- a/src/mesa/drivers/dri/i965/Makefile.am +++ b/src/mesa/drivers/dri/i965/Makefile.am @@ -77,5 +77,5 @@ i965_symbols_test_LDADD = \ # Provide compatibility with scripts for the old Mesa build system for # a while by putting a link to the driver into /lib of the build tree. all-local: i965_dri.la - $(MKDIR_P) $(top_builddir)/$(LIB_DIR); + $(mkdir_p) $(top_builddir)/$(LIB_DIR); ln -f .libs/i965_dri.so $(top_builddir)/$(LIB_DIR)/i965_dri.so; diff --git a/src/mesa/drivers/dri/nouveau/Makefile.am b/src/mesa/drivers/dri/nouveau/Makefile.am index 77880fd..40b0eb4 100644 --- a/src/mesa/drivers/dri/nouveau/Makefile.am +++ b/src/mesa/drivers/dri/nouveau/Makefile.am @@ -55,5 +55,5 @@ nouveau_vieux_dri_la_LIBADD = \ # Provide compatibility with scripts for the old Mesa build system for # a while by putting a link to the driver into /lib of the build tree. all-local: nouveau_vieux_dri.la - $(MKDIR_P) $(top_builddir)/$(LIB_DIR); + $(mkdir_p) $(top_builddir)/$(LIB_DIR); ln -f .libs/nouveau_vieux_dri.so $(top_builddir)/$(LIB_DIR)/nouveau_vieux_dri.so; diff --git a/src/mesa/drivers/dri/r200/Makefile.am b/src/mesa/drivers/dri/r200/Makefile.am index e83c5b7..9738b2b 100644 --- a/src/mesa/drivers/dri/r200/Makefile.am +++ b/src/mesa/drivers/dri/r200/Makefile.am @@ -57,5 +57,5 @@ r200_dri_la_LIBADD = \ # Provide compatibility with scripts for the old Mesa build system for # a while by putting a link to the driver into /lib of the build tree. all-local: r200_dri.la - $(MKDIR_P) $(top_builddir)/$(LIB_DIR); + $(mkdir_p) $(top_builddir)/$(LIB_DIR); ln -f .libs/r200_dri.so $(top_builddir)/$(LIB_DIR)/r200_dri.so; diff --git a/src/mesa/drivers/dri/radeon/Makefile.am b/src/mesa/drivers/dri/radeon/Makefile.am index 27e6ea5..2d7ba43 100644 --- a/src/mesa/drivers/dri/radeon/Makefile.am +++ b/src/mesa/drivers/dri/radeon/Makefile.am @@ -57,5 +57,5 @@ radeon_dri_la_LIBADD = \ # Provide compatibility with scripts for the old Mesa build system for # a while by putting a link to the driver into /lib of the build tree. all-local: radeon_dri.la - $(MKDIR_P) $(top_builddir)/$(LIB_DIR); + $(mkdir_p) $(top_builddir)/$(LIB_DIR); ln -f .libs/radeon_dri.so $(top_builddir)/$(LIB_DIR)/radeon_dri.so; diff --git a/src/mesa/drivers/dri/swrast/Makefile.am b/src/mesa/drivers/dri/swrast/Makefile.am index 0a28004..af73584 100644 --- a/src/mesa/drivers/dri/swrast/Makefile.am +++ b/src/mesa/drivers/dri/swrast/Makefile.am @@ -54,5 +54,5 @@ swrast_dri_la_LIBADD = \ # Provide compatibility with scripts for the old Mesa build system for # a while by putting a link to the driver into /lib of the build tree. all-local: swrast_dri.la - $(MKDIR_P) $(top_builddir)/$(LIB_DIR); + $(mkdir_p) $(top_builddir)/$(LIB_DIR); ln -f .libs/swrast_dri.so $(top_builddir)/$(LIB_DIR)/swrast_dri.so; -- 1.7.8.3