diff options
author | Sergey Skvortsov <skv@FreeBSD.org> | 2009-11-02 16:50:41 +0000 |
---|---|---|
committer | Sergey Skvortsov <skv@FreeBSD.org> | 2009-11-02 16:50:41 +0000 |
commit | 4d12d4ea700067ee5024837a45966338df8afbde (patch) | |
tree | 73a95f70d28af9a9ecf26b76af316c10678130f8 /lang/perl5.16/files | |
parent | Update to 2.010803 (diff) |
- Fix behaviour of USE_PERL option when it is "off"
- Add PORTSCOUT variable
Notes
Notes:
svn path=/head/; revision=243662
Diffstat (limited to 'lang/perl5.16/files')
-rw-r--r-- | lang/perl5.16/files/use.perl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/perl5.16/files/use.perl b/lang/perl5.16/files/use.perl index a75ac2641a65..59ee8ee0fce9 100644 --- a/lang/perl5.16/files/use.perl +++ b/lang/perl5.16/files/use.perl @@ -18,15 +18,15 @@ else fi if [ "$2" = "POST-INSTALL" ] ; then - need_remove_links=yes - need_create_links=yes + need_remove_links=%%LINK_USRBIN%% + need_create_links=%%LINK_USRBIN%% need_cleanup_make_conf=yes need_cleanup_manpath=yes need_spam_make_conf=yes need_spam_manpath=yes need_post_install=yes elif [ "$2" = "POST-DEINSTALL" ] ; then - need_remove_links=yes + need_remove_links=%%LINK_USRBIN%% need_cleanup_make_conf=yes need_cleanup_manpath=yes else |