diff options
author | Bob Funk <bobfunk11@gmail.com> | 2024-05-11 20:16:16 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-05-14 06:47:44 +0700 |
commit | 68774316ca26f550a01b1ee3a72b2f624baeab6d (patch) | |
tree | 0afb4f010afec4bb2638766b3557d62947a7541e | |
parent | 559260f738a8a0b68d599996ff6344ca6bc17c11 (diff) |
desktop/gnome-shell: Disable building tests.
Disabling tests on 'gnome-shell' will allow mutter to disable its tests
and drop the dependency on 'xvfb-run'.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | desktop/gnome-shell/gnome-shell.SlackBuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/desktop/gnome-shell/gnome-shell.SlackBuild b/desktop/gnome-shell/gnome-shell.SlackBuild index 06eb31e9e720..42d18f22894f 100644 --- a/desktop/gnome-shell/gnome-shell.SlackBuild +++ b/desktop/gnome-shell/gnome-shell.SlackBuild @@ -29,12 +29,15 @@ # Slackware's gsettings-desktop-schemas-40.0. Then we install the 41.0 schemas # in a alternate location, compile them, and show gnome-shell where they are # using XDG_DATA_DIRS at runtime with a wrapper script. +# +# Modified May 10, 2024 - Disable building tests to drop mutter's +# xvfb-run dependency. cd $(dirname $0) ; CWD=$(pwd) PRGNAM=gnome-shell VERSION=${VERSION:-41.9} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -143,7 +146,8 @@ cd build --prefix=/usr \ --sysconfdir=/etc \ -Dstrip=true \ - -Dsystemd=false + -Dsystemd=false \ + -Dtests=false "${NINJA:=ninja}" DESTDIR=$PKG $NINJA install cd .. |