diff options
author | John Marino <marino@FreeBSD.org> | 2014-06-15 12:40:42 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-06-15 12:40:42 +0000 |
commit | 5e065a93b701a7fd0930953d612db1039b6fd572 (patch) | |
tree | d8e747ffd56d8706eaf040a5f3014e4e2fef51b8 /lang/perl5.18 | |
parent | ca25ebcc62a7f8dc930d943b8f62927fd995a3cf (diff) | |
download | ports-5e065a93b701a7fd0930953d612db1039b6fd572.tar.gz ports-5e065a93b701a7fd0930953d612db1039b6fd572.zip |
lang/perl5*: Remove absolute path to makewhatis in pkg-plist
Generally absolutely paths are not used with @exec in pkg-plist.
In this case, the path /usr/bin/makewhatis doesn't work on DragonFly
where the binary is located at /usr/sbin/makewhatis. Removing the
full path is a no-op on FreeBSD and fixes perl man page installation
on DragonFly. No revbump required.
Approved by: portmgr (bapt)
Notes
Notes:
svn path=/head/; revision=357875
Diffstat (limited to 'lang/perl5.18')
-rw-r--r-- | lang/perl5.18/pkg-plist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/perl5.18/pkg-plist b/lang/perl5.18/pkg-plist index 6ef4b322c610..7d22038165c4 100644 --- a/lang/perl5.18/pkg-plist +++ b/lang/perl5.18/pkg-plist @@ -3136,12 +3136,12 @@ man/man1/zipdetails.1.gz @dirrmtry lib/perl5/%%PERL_VER%%/man/man3 @exec install -d %D/lib/perl5/%%PERL_VER%%/man/man3 @unexec /bin/rm -f %D/lib/perl5/%%PERL_VER%%/man/whatis -@exec /usr/bin/makewhatis %D/lib/perl5/%%PERL_VER%%/man +@exec makewhatis %D/lib/perl5/%%PERL_VER%%/man @dirrmtry lib/perl5/%%PERL_VER%%/man @dirrm lib/perl5/%%PERL_VER%%/overload @dirrm %%MAN3%% @unexec /bin/rm -f %D/lib/perl5/%%PERL_VER%%/perl/man/whatis -@exec /usr/bin/makewhatis %D/lib/perl5/%%PERL_VER%%/perl/man +@exec makewhatis %D/lib/perl5/%%PERL_VER%%/perl/man @dirrm lib/perl5/%%PERL_VER%%/perl/man @dirrm lib/perl5/%%PERL_VER%%/perl @dirrm lib/perl5/%%PERL_VER%%/pod |