]> code.ossystems Code Review - openembedded-core.git/commitdiff
mesa-demos: Move util to the front of the SUBDIRS variable.
authorDrew Moseley <drew_moseley@mentor.com>
Thu, 27 Nov 2014 00:49:55 +0000 (19:49 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 5 Dec 2014 17:42:46 +0000 (17:42 +0000)
This forces it to be built first since many of the demos
require it.  Resolves build failures such as the following
when certain demos are enabled (notably when PACKAGECONFIG
contains glut):

    make[2]: *** No rule to make target `../util/libutil.la', needed by `copypix'.  Stop.

Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-graphics/mesa/mesa-demos/0003-configure-Allow-to-disable-demos-which-require-GLEW-.patch

index e02f1ab4ec73ef4f7a2ce10935a346d402ed0d75..4b07193a7f81d443d64a4206514740d7bf30766e 100644 (file)
@@ -95,11 +95,16 @@ diff --git a/src/Makefile.am b/src/Makefile.am
 index 1647d64..754c47c 100644
 --- a/src/Makefile.am
 +++ b/src/Makefile.am
-@@ -23,14 +23,13 @@
+@@ -23,14 +23,18 @@
  #    Eric Anholt <eric@anholt.net>
  
++if HAVE_GLEW
++UTIL = util
++endif
++
  SUBDIRS = \
 -      util \
++      $(UTIL) \
        data \
        demos \
        egl \
@@ -111,7 +116,7 @@ index 1647d64..754c47c 100644
        objviewer \
        osdemos \
        perf \
-@@ -40,8 +39,13 @@ SUBDIRS = \
+@@ -40,8 +39,12 @@ SUBDIRS = \
        slang \
        tests \
        tools \
@@ -125,7 +130,6 @@ index 1647d64..754c47c 100644
 +SUBDIRS += \
 +      vp \
 +      vpglsl \
-+      util \
 +      trivial
 +endif
 diff --git a/src/demos/Makefile.am b/src/demos/Makefile.am