Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: eclass/
Date: Sat, 07 May 2022 02:11:36
Message-Id: 1651889482.5259d23ea883b3dd7b79f43f6dd29c3357d2858d.Alessandro-Barbieri@gentoo
1 commit: 5259d23ea883b3dd7b79f43f6dd29c3357d2858d
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Sat May 7 02:10:44 2022 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Sat May 7 02:11:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5259d23e
7
8 octaveforge.eclass: add missing --no-gui, --eval
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 eclass/octaveforge.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/octaveforge.eclass b/eclass/octaveforge.eclass
16 index 25ac74efc..d02072fd5 100644
17 --- a/eclass/octaveforge.eclass
18 +++ b/eclass/octaveforge.eclass
19 @@ -209,9 +209,9 @@ octaveforge_pkg_postrm() {
20 mkdir -p "${OCT_PKGDIR}" || die
21 fi
22 cmd="pkg('rebuild');"
23 - "${OCT_BIN}" -H --silent "${cmd}" || die 'failed to rebuild the package database'
24 + "${OCT_BIN}" -H --silent --no-gui --eval "${cmd}" || die 'failed to rebuild the package database'
25 }
26
27 octavecommand() {
28 - "${OCT_BIN}" -H -q --no-site-file --eval "$1"
29 + "${OCT_BIN}" -H -q --no-site-file --no-gui --eval "$1"
30 }