diff options
author | sem <sem@FreeBSD.org> | 2004-12-09 18:07:40 +0000 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2004-12-09 18:07:40 +0000 |
commit | 67e61f201559aba17522f3bbb4812d077b0fc11f (patch) | |
tree | be3228df4d37f22127572dd3b755ed5f3c5cdd79 /textproc | |
parent | 038eb036d32481823b4d7808d59e5ce10afbc86e (diff) | |
download | FreeBSD-ports-67e61f201559aba17522f3bbb4812d077b0fc11f.zip FreeBSD-ports-67e61f201559aba17522f3bbb4812d077b0fc11f.tar.gz |
Fix a problem with the pkg-plist which failed to remove some
directories when the port was deinstalled.
PR: ports/74891
Submitted by: maintainer
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/p5-Text-Netstring/pkg-plist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/p5-Text-Netstring/pkg-plist b/textproc/p5-Text-Netstring/pkg-plist index 9f13f40..b397c58 100644 --- a/textproc/p5-Text-Netstring/pkg-plist +++ b/textproc/p5-Text-Netstring/pkg-plist @@ -1,5 +1,5 @@ %%SITE_PERL%%/Text/Netstring.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Netstring/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Netstring -@unexec rmdir %%SITE_PERL%%/Text 2>/dev/null || true -@unexec rmdir %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text 2>/dev/null || true +@unexec rmdir %%PREFIX%%/%%SITE_PERL%%/Text 2>/dev/null || true +@unexec rmdir %%PREFIX%%/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Text 2>/dev/null || true |