source: rtems-graphics-toolkit/patches/fltk/0002-fltk-Don-t-build-the-tests-unless-explicitly-request.patch @ a2dc50f

Last change on this file since a2dc50f was a2dc50f, checked in by Gedare Bloom <gedare@…>, on 01/17/14 at 14:23:43

patches: new subdirectory for upstream patches not yet merged

  • Property mode set to 100644
File size: 776 bytes
  • fltk-1.3.0/Makefile

    From 33a2aae8306bbbf829043cf5ff7022cdf0ffe41c Mon Sep 17 00:00:00 2001
    From: Chirayu Desai <cdesai@cyanogenmod.org>
    Date: Thu, 2 Jan 2014 22:31:13 +0530
    Subject: [PATCH 2/2] fltk: Don't build the tests unless explicitly requested
    
    * Can be built by setting ENABLE_FLTK_TESTS
    ---
     fltk-1.3.0/Makefile | 5 ++++-
     1 file changed, 4 insertions(+), 1 deletion(-)
    
    diff --git a/fltk-1.3.0/Makefile b/fltk-1.3.0/Makefile
    index 01663b2ac5..1cd97fb050 100644
    a b  
    2727
    2828include makeinclude
    2929
    30 DIRS = $(IMAGEDIRS) src $(CAIRODIR) test documentation
     30DIRS = $(IMAGEDIRS) src $(CAIRODIR) documentation
     31ifneq ($(ENABLE_FLTK_TESTS),)
     32DIRS += test
     33endif
    3134
    3235all: makeinclude fltk-config
    3336        for dir in $(DIRS); do\
Note: See TracBrowser for help on using the repository browser.