diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-08-09 22:12:19 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-08-10 12:11:55 +0300 |
commit | 4dd0a8b60170863a789b2a645e07e6f0fbda06e0 (patch) | |
tree | f63f3d0cf22d7a3d6fb77d98195fe3b72ce26dea /gnu/packages | |
parent | daa9a9108d9059bcc28b48cf56eec0ea699fdb75 (diff) | |
download | patches-4dd0a8b60170863a789b2a645e07e6f0fbda06e0.tar patches-4dd0a8b60170863a789b2a645e07e6f0fbda06e0.tar.gz |
gnu: qt: Don't build examples.
* gnu/packages/qt.scm (qt)[arguments]: Add flag to not build the examples.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/qt.scm | 4 |
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" |