diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2018-10-09 10:31:02 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2018-10-09 10:33:03 +0300 |
commit | 31f45cf7be18d1cfc46a0ae785a3057227c4b185 (patch) | |
tree | 8f04f71ecbc5d047c3c60bda380ff7c20319f7f1 /gnu | |
parent | 07b0662754014f7ac8ab81ce6a8878d0cc206b19 (diff) | |
download | patches-31f45cf7be18d1cfc46a0ae785a3057227c4b185.tar patches-31f45cf7be18d1cfc46a0ae785a3057227c4b185.tar.gz |
gnu: agg: Don't build examples.
* gnu/packages/graphics.scm (agg)[arguments]: Disable building the
examples.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/graphics.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 58c742b825..79fd134bbe 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -705,7 +705,8 @@ and understanding different BRDFs (and other component functions).") (list (string-append "--x-includes=" (assoc-ref %build-inputs "libx11") "/include") (string-append "--x-libraries=" (assoc-ref %build-inputs "libx11") - "/lib")) + "/lib") + "--disable-examples") #:phases (modify-phases %standard-phases (add-after 'unpack 'autoreconf |