diff options
author | kmoore <kmoore@FreeBSD.org> | 2009-11-12 06:12:13 +0800 |
---|---|---|
committer | kmoore <kmoore@FreeBSD.org> | 2009-11-12 06:12:13 +0800 |
commit | e8d7563b16215f3b932d458a45ccad706b1830c9 (patch) | |
tree | f45caac698bbf9667aabef5c94e0f8731bcda9cc /editors/rox-edit | |
parent | 354e3f24763b780cc87f6574dffaf104eae18075 (diff) | |
download | freebsd-ports-gnome-e8d7563b16215f3b932d458a45ccad706b1830c9.tar.gz freebsd-ports-gnome-e8d7563b16215f3b932d458a45ccad706b1830c9.tar.zst freebsd-ports-gnome-e8d7563b16215f3b932d458a45ccad706b1830c9.zip |
- Fix runtime issues when using CUSTOM prefix
PR: 139647
Submitted by: myself
Approved by: Maintainer Timeout
Approved by: miwi (mentor)
Diffstat (limited to 'editors/rox-edit')
-rw-r--r-- | editors/rox-edit/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/editors/rox-edit/Makefile b/editors/rox-edit/Makefile index 228274c429ae..c9f7b3ed26c7 100644 --- a/editors/rox-edit/Makefile +++ b/editors/rox-edit/Makefile @@ -28,6 +28,11 @@ do-build: @${PYTHON_CMD} -m compileall ${WRKSRC} @${PYTHON_CMD} -O -m compileall ${WRKSRC} +pre-install: + @${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g' \ + ${WRKSRC}/Edit/findrox.py + @${FIND} ${WRKSRC} -name *.bak | ${XARGS} ${RM} + do-install: @${MKDIR} ${PREFIX}/apps @${CP} -r ${WRKSRC}/Edit ${PREFIX}/apps/ |