diff options
author | Pavel Timofeev <timp87@gmail.com> | 2025-07-15 10:05:28 +0300 |
---|---|---|
committer | Gleb Popov <arrowd@FreeBSD.org> | 2025-07-15 10:37:59 +0300 |
commit | 9e8a524e9505523dec497fbf04d4abbf5feaec3a (patch) | |
tree | 2d9536a78dedf7127d6538c7d0d9b68576e9a3b3 | |
parent | sysutils/polkit-gnome: Autostart the agent when running under Cinnamon (diff) |
x11/xapp: Patch the hardcoded /usr/bin path with ${PREFIX}
PR: 288226
-rw-r--r-- | x11/xapp/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/x11/xapp/Makefile b/x11/xapp/Makefile index e0c3b57618a5..b0a81033e525 100644 --- a/x11/xapp/Makefile +++ b/x11/xapp/Makefile @@ -1,5 +1,6 @@ PORTNAME= xapp DISTVERSION= 2.8.9 +PORTREVISION= 1 CATEGORIES= x11 gnome DIST_SUBDIR= gnome @@ -53,4 +54,8 @@ VAPI_IMPLIES= INTROSPECTION XFCE_DESC= Install xfce specific items XFCE_MESON_TRUE= xfce +post-patch: + ${REINPLACE_CMD} -e 's|/usr/bin|${PREFIX}/bin|g' \ + ${WRKSRC}/scripts/upload-system-info + .include <bsd.port.mk> |