diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-08-24 22:36:26 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-08-24 22:36:26 +0000 |
commit | e0737a368b7243d1ef9432e0e26136951af363bd (patch) | |
tree | 48d8fb8b3a6f48ff05dcd9cb0ade1e886931112a /main | |
parent | f60b4e14b180493f414958d85c43ec3f3568f7d1 (diff) | |
download | aports-e0737a368b7243d1ef9432e0e26136951af363bd.tar.bz2 aports-e0737a368b7243d1ef9432e0e26136951af363bd.tar.xz |
main/lxtermina: fix check
lxterminal will fail on build server with the following error:
(lxterminal:3542): Gtk-WARNING **: cannot open display:
So instead we run `make check` which currently is a no-op.
Diffstat (limited to 'main')
-rw-r--r-- | main/lxterminal/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/lxterminal/APKBUILD b/main/lxterminal/APKBUILD index c9b22b5bed..dc596b0416 100644 --- a/main/lxterminal/APKBUILD +++ b/main/lxterminal/APKBUILD @@ -33,7 +33,7 @@ build() { check() { cd "$builddir" - ./src/lxterminal -v + make -C src check } package() { |