diff options
author | khorben <khorben@pkgsrc.org> | 2015-10-09 22:33:13 +0000 |
---|---|---|
committer | khorben <khorben@pkgsrc.org> | 2015-10-09 22:33:13 +0000 |
commit | a3e5c167091e5d8115f75855ec2bc8038b38bfee (patch) | |
tree | 0c840e6ca4aabe62b06fe63ec2c2f08d13b113ae /sysutils/deforaos-browser | |
parent | 739eb220a9fc42df70b2a8b8590a30a06306bd2e (diff) | |
download | pkgsrc-a3e5c167091e5d8115f75855ec2bc8038b38bfee.tar.gz |
Fix build when not running under X
Reported by joerg@, thanks!
Diffstat (limited to 'sysutils/deforaos-browser')
-rw-r--r-- | sysutils/deforaos-browser/distinfo | 3 | ||||
-rw-r--r-- | sysutils/deforaos-browser/patches/patch-tests_tests.sh | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/sysutils/deforaos-browser/distinfo b/sysutils/deforaos-browser/distinfo index 84900840f66..6fc9680717c 100644 --- a/sysutils/deforaos-browser/distinfo +++ b/sysutils/deforaos-browser/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.8 2015/10/05 23:43:55 khorben Exp $ +$NetBSD: distinfo,v 1.9 2015/10/09 22:33:13 khorben Exp $ SHA1 (Browser-0.4.14.tar.gz) = 3cdc454e6fe4bdbf571cd757158ffedf5a7927f5 RMD160 (Browser-0.4.14.tar.gz) = 3d909527398371f5c5310f359ffb1400af96654a Size (Browser-0.4.14.tar.gz) = 157693 bytes +SHA1 (patch-tests_tests.sh) = 5fb3daf6f86cd2e38d1d77202ad7c3e61955a763 diff --git a/sysutils/deforaos-browser/patches/patch-tests_tests.sh b/sysutils/deforaos-browser/patches/patch-tests_tests.sh new file mode 100644 index 00000000000..fe2b9e52ca7 --- /dev/null +++ b/sysutils/deforaos-browser/patches/patch-tests_tests.sh @@ -0,0 +1,15 @@ +$NetBSD: patch-tests_tests.sh,v 1.1 2015/10/09 22:33:13 khorben Exp $ + +Only run the "vfs" test when running under X + +--- tests/tests.sh.orig 2015-10-05 23:01:10.000000000 +0000 ++++ tests/tests.sh +@@ -99,7 +99,7 @@ $DATE > "$target" + FAILED= + echo "Performing tests:" 1>&2 + _test "plugins" +-_test "vfs" ++[ -z "$DISPLAY" ] || _test "vfs" + #echo "Expected failures:" 1>&2 + #_fail "plugins" + if [ -n "$FAILED" ]; then |