diff options
author | bapt <bapt@FreeBSD.org> | 2015-10-22 21:30:32 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-10-22 21:30:32 +0800 |
commit | 808b21c2ad198aed51ea26d0b085eba2f82420c3 (patch) | |
tree | aa7e8cf6ab996930e06d31307ad158ea7d4565a5 /Keywords | |
parent | a4287fdea0e0cd81cd99f1b5d27be016f3367ad6 (diff) | |
download | freebsd-ports-gnome-808b21c2ad198aed51ea26d0b085eba2f82420c3.tar.gz freebsd-ports-gnome-808b21c2ad198aed51ea26d0b085eba2f82420c3.tar.zst freebsd-ports-gnome-808b21c2ad198aed51ea26d0b085eba2f82420c3.zip |
Make @info cross install friendly
Diffstat (limited to 'Keywords')
-rw-r--r-- | Keywords/info.ucl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Keywords/info.ucl b/Keywords/info.ucl index 956884330786..c6d276182536 100644 --- a/Keywords/info.ucl +++ b/Keywords/info.ucl @@ -8,12 +8,12 @@ post-install: <<EOD /*) file="%@" ;; *) file="%D/%@" ;; esac - indexinfo ${file%/*} + indexinfo ${PKG_ROOTDIR}${file%/*} EOD post-deinstall: <<EOD case "%@" in /*) file="%@" ;; *) file="%D/%@" ;; esac - indexinfo ${file%/*} + indexinfo ${PKG_ROOTDIR}${file%/*} EOD |