summary refs log tree commit diff
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2016-08-09 22:12:19 +0300
committerEfraim Flashner <efraim@flashner.co.il>2016-08-10 12:11:55 +0300
commit4dd0a8b60170863a789b2a645e07e6f0fbda06e0 (patch)
treef63f3d0cf22d7a3d6fb77d98195fe3b72ce26dea
parentdaa9a9108d9059bcc28b48cf56eec0ea699fdb75 (diff)
downloadguix-4dd0a8b60170863a789b2a645e07e6f0fbda06e0.tar.gz
gnu: qt: Don't build examples.
* gnu/packages/qt.scm (qt)[arguments]: Add flag to not build the examples.
-rw-r--r--gnu/packages/qt.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 7bba05cbb8..a35c33724a 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -175,6 +175,10 @@
                        "-prefix" out
                        "-opensource"
                        "-confirm-license"
+                       ;; Do not build examples; if desired, these could go
+                       ;; into a separate output, but for the time being, we
+                       ;; prefer to save the space and build time.
+                       "-nomake" "examples"
                        ;; Most "-system-..." are automatic, but some use
                        ;; the bundled copy by default.
                        "-system-sqlite"