diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2019-04-18 14:13:35 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2019-04-18 14:13:35 +0000 |
commit | b7e771196daef2edfa91f2f6b2ffb94e354bb9f8 (patch) | |
tree | 161b3b746e3025a5e7b6a3dc87e7dda1db1cb03a /x11-wm/openbox/Makefile | |
parent | ed41ef978a2ca5ede0a86259863b304348510d5a (diff) |
x11-wm/openbox: fix openbox-xdg-autostart for Python 3
Openbox includes a Python script (openbox-xdg-autostart)
which implements the XDG autostart spec
(https://www.freedesktop.org/wiki/Specifications/autostart-spec/).
The switch of the default Python to 3.6 in ports r498529 broke the script.
The added patch makes the script work again with both Python 2 and 3.
Luckily the only problem was "print" being changed from a keyword
to a regular function.
PR: 237319
Submitted by: Sebastian Schwarz
Notes
Notes:
svn path=/head/; revision=499266
Diffstat (limited to 'x11-wm/openbox/Makefile')
-rw-r--r-- | x11-wm/openbox/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-wm/openbox/Makefile b/x11-wm/openbox/Makefile index d22e4db6f428..35d3d0d15585 100644 --- a/x11-wm/openbox/Makefile +++ b/x11-wm/openbox/Makefile @@ -3,7 +3,7 @@ PORTNAME= openbox PORTVERSION= 3.6 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11-wm MASTER_SITES= http://openbox.org/dist/openbox/ |