mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
- Because of bugzilla's bugs. checksetup.pl doesn't check File::Spec modules version. So disable it's version check. (https://bugzilla.mozilla.org/show_bug.cgi?id=257933)
- fix web server's uid/gid - fix plist that not listed PR: ports/76946 Submitted by: "Choe, Cheng-Dae" <whitekid (at) gmail.com>
This commit is contained in:
parent
0b5d3f8d4b
commit
7608a97427
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=129699
9 changed files with 156 additions and 9 deletions
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME?= bugzilla
|
PORTNAME?= bugzilla
|
||||||
PORTVERSION?= 2.18
|
PORTVERSION?= 2.18
|
||||||
|
PORTREVISION?= 1
|
||||||
CATEGORIES?= devel
|
CATEGORIES?= devel
|
||||||
MASTER_SITES= ${MASTER_SITE_MOZILLA}
|
MASTER_SITES= ${MASTER_SITE_MOZILLA}
|
||||||
MASTER_SITE_SUBDIR= webtools webtools/archived
|
MASTER_SITE_SUBDIR= webtools webtools/archived
|
||||||
|
|
|
@ -1,11 +1,23 @@
|
||||||
--- checksetup.pl.orig Fri Jan 14 10:51:36 2005
|
|
||||||
+++ checksetup.pl Mon Jan 24 17:39:29 2005
|
$FreeBSD$
|
||||||
|
|
||||||
|
--- checksetup.pl.orig
|
||||||
|
+++ checksetup.pl
|
||||||
|
@@ -288,7 +288,7 @@
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name => 'File::Spec',
|
||||||
|
- version => '0.82'
|
||||||
|
+ version => '0'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name => 'File::Temp',
|
||||||
@@ -616,7 +616,7 @@
|
@@ -616,7 +616,7 @@
|
||||||
|
|
||||||
my $webservergroup_default;
|
my $webservergroup_default;
|
||||||
if ($^O !~ /MSWin32/i) {
|
if ($^O !~ /MSWin32/i) {
|
||||||
- $webservergroup_default = 'apache';
|
- $webservergroup_default = 'apache';
|
||||||
+ $webservergroup_default = 'nogroup';
|
+ $webservergroup_default = 'www';
|
||||||
} else {
|
} else {
|
||||||
$webservergroup_default = '';
|
$webservergroup_default = '';
|
||||||
}
|
}
|
||||||
|
|
|
@ -120,6 +120,31 @@
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/xml/troubleshooting.xml
|
%%PORTDOCS%%%%DOCSDIR%%/xml/troubleshooting.xml
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/xml/using.xml
|
%%PORTDOCS%%%%DOCSDIR%%/xml/using.xml
|
||||||
%%BUGZILLADIR%%/1x1.gif
|
%%BUGZILLADIR%%/1x1.gif
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth/Cookie.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth/CGI.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth/DB.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth/LDAP.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Attachment.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Bug.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/BugMail.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/CGI.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Chart.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Config.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Constants.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/DB.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Error.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Flag.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/FlagType.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/RelationSet.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Search.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Series.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Template.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Token.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/User.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Util.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Template/Plugin/Bugzilla.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Template/Plugin/Hook.pm
|
||||||
%%BUGZILLADIR%%/Bugzilla.pm
|
%%BUGZILLADIR%%/Bugzilla.pm
|
||||||
%%BUGZILLADIR%%/CGI.pl
|
%%BUGZILLADIR%%/CGI.pl
|
||||||
%%BUGZILLADIR%%/QUICKSTART
|
%%BUGZILLADIR%%/QUICKSTART
|
||||||
|
@ -133,6 +158,10 @@
|
||||||
%%BUGZILLADIR%%/colchange.cgi
|
%%BUGZILLADIR%%/colchange.cgi
|
||||||
%%BUGZILLADIR%%/collectstats.pl
|
%%BUGZILLADIR%%/collectstats.pl
|
||||||
%%BUGZILLADIR%%/config.cgi
|
%%BUGZILLADIR%%/config.cgi
|
||||||
|
%%BUGZILLADIR%%/js/duplicates.js
|
||||||
|
%%BUGZILLADIR%%/skins/standard/duplicates.css
|
||||||
|
%%BUGZILLADIR%%/skins/standard/global.css
|
||||||
|
%%BUGZILLADIR%%/skins/standard/show_multiple.css
|
||||||
%%CONTRIB%%%%BUGZILLADIR%%/contrib/BugzillaEmail.pm
|
%%CONTRIB%%%%BUGZILLADIR%%/contrib/BugzillaEmail.pm
|
||||||
%%CONTRIB%%%%BUGZILLADIR%%/contrib/README
|
%%CONTRIB%%%%BUGZILLADIR%%/contrib/README
|
||||||
%%CONTRIB%%%%BUGZILLADIR%%/contrib/README.Mailif
|
%%CONTRIB%%%%BUGZILLADIR%%/contrib/README.Mailif
|
||||||
|
@ -395,6 +424,13 @@
|
||||||
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/cmdline
|
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/cmdline
|
||||||
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/bugzilla-submit
|
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/bugzilla-submit
|
||||||
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib
|
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib
|
||||||
|
@dirrm %%BUGZILLADIR%%/Bugzilla/Auth
|
||||||
|
@dirrm %%BUGZILLADIR%%/Bugzilla/Template/Plugin
|
||||||
|
@dirrm %%BUGZILLADIR%%/Bugzilla/Template
|
||||||
|
@dirrm %%BUGZILLADIR%%/Bugzilla
|
||||||
|
@dirrm %%BUGZILLADIR%%/js
|
||||||
|
@dirrm %%BUGZILLADIR%%/skins/standard
|
||||||
|
@dirrm %%BUGZILLADIR%%/skins
|
||||||
@dirrm %%BUGZILLADIR%%
|
@dirrm %%BUGZILLADIR%%
|
||||||
@dirrm %%PORTDOCS%%%%DOCSDIR%%/xml
|
@dirrm %%PORTDOCS%%%%DOCSDIR%%/xml
|
||||||
@dirrm %%PORTDOCS%%%%DOCSDIR%%/txt
|
@dirrm %%PORTDOCS%%%%DOCSDIR%%/txt
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME?= bugzilla
|
PORTNAME?= bugzilla
|
||||||
PORTVERSION?= 2.18
|
PORTVERSION?= 2.18
|
||||||
|
PORTREVISION?= 1
|
||||||
CATEGORIES?= devel
|
CATEGORIES?= devel
|
||||||
MASTER_SITES= ${MASTER_SITE_MOZILLA}
|
MASTER_SITES= ${MASTER_SITE_MOZILLA}
|
||||||
MASTER_SITE_SUBDIR= webtools webtools/archived
|
MASTER_SITE_SUBDIR= webtools webtools/archived
|
||||||
|
|
|
@ -1,11 +1,23 @@
|
||||||
--- checksetup.pl.orig Fri Jan 14 10:51:36 2005
|
|
||||||
+++ checksetup.pl Mon Jan 24 17:39:29 2005
|
$FreeBSD$
|
||||||
|
|
||||||
|
--- checksetup.pl.orig
|
||||||
|
+++ checksetup.pl
|
||||||
|
@@ -288,7 +288,7 @@
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name => 'File::Spec',
|
||||||
|
- version => '0.82'
|
||||||
|
+ version => '0'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name => 'File::Temp',
|
||||||
@@ -616,7 +616,7 @@
|
@@ -616,7 +616,7 @@
|
||||||
|
|
||||||
my $webservergroup_default;
|
my $webservergroup_default;
|
||||||
if ($^O !~ /MSWin32/i) {
|
if ($^O !~ /MSWin32/i) {
|
||||||
- $webservergroup_default = 'apache';
|
- $webservergroup_default = 'apache';
|
||||||
+ $webservergroup_default = 'nogroup';
|
+ $webservergroup_default = 'www';
|
||||||
} else {
|
} else {
|
||||||
$webservergroup_default = '';
|
$webservergroup_default = '';
|
||||||
}
|
}
|
||||||
|
|
|
@ -120,6 +120,31 @@
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/xml/troubleshooting.xml
|
%%PORTDOCS%%%%DOCSDIR%%/xml/troubleshooting.xml
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/xml/using.xml
|
%%PORTDOCS%%%%DOCSDIR%%/xml/using.xml
|
||||||
%%BUGZILLADIR%%/1x1.gif
|
%%BUGZILLADIR%%/1x1.gif
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth/Cookie.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth/CGI.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth/DB.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth/LDAP.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Attachment.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Bug.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/BugMail.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/CGI.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Chart.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Config.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Constants.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/DB.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Error.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Flag.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/FlagType.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/RelationSet.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Search.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Series.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Template.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Token.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/User.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Util.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Template/Plugin/Bugzilla.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Template/Plugin/Hook.pm
|
||||||
%%BUGZILLADIR%%/Bugzilla.pm
|
%%BUGZILLADIR%%/Bugzilla.pm
|
||||||
%%BUGZILLADIR%%/CGI.pl
|
%%BUGZILLADIR%%/CGI.pl
|
||||||
%%BUGZILLADIR%%/QUICKSTART
|
%%BUGZILLADIR%%/QUICKSTART
|
||||||
|
@ -133,6 +158,10 @@
|
||||||
%%BUGZILLADIR%%/colchange.cgi
|
%%BUGZILLADIR%%/colchange.cgi
|
||||||
%%BUGZILLADIR%%/collectstats.pl
|
%%BUGZILLADIR%%/collectstats.pl
|
||||||
%%BUGZILLADIR%%/config.cgi
|
%%BUGZILLADIR%%/config.cgi
|
||||||
|
%%BUGZILLADIR%%/js/duplicates.js
|
||||||
|
%%BUGZILLADIR%%/skins/standard/duplicates.css
|
||||||
|
%%BUGZILLADIR%%/skins/standard/global.css
|
||||||
|
%%BUGZILLADIR%%/skins/standard/show_multiple.css
|
||||||
%%CONTRIB%%%%BUGZILLADIR%%/contrib/BugzillaEmail.pm
|
%%CONTRIB%%%%BUGZILLADIR%%/contrib/BugzillaEmail.pm
|
||||||
%%CONTRIB%%%%BUGZILLADIR%%/contrib/README
|
%%CONTRIB%%%%BUGZILLADIR%%/contrib/README
|
||||||
%%CONTRIB%%%%BUGZILLADIR%%/contrib/README.Mailif
|
%%CONTRIB%%%%BUGZILLADIR%%/contrib/README.Mailif
|
||||||
|
@ -395,6 +424,13 @@
|
||||||
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/cmdline
|
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/cmdline
|
||||||
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/bugzilla-submit
|
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/bugzilla-submit
|
||||||
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib
|
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib
|
||||||
|
@dirrm %%BUGZILLADIR%%/Bugzilla/Auth
|
||||||
|
@dirrm %%BUGZILLADIR%%/Bugzilla/Template/Plugin
|
||||||
|
@dirrm %%BUGZILLADIR%%/Bugzilla/Template
|
||||||
|
@dirrm %%BUGZILLADIR%%/Bugzilla
|
||||||
|
@dirrm %%BUGZILLADIR%%/js
|
||||||
|
@dirrm %%BUGZILLADIR%%/skins/standard
|
||||||
|
@dirrm %%BUGZILLADIR%%/skins
|
||||||
@dirrm %%BUGZILLADIR%%
|
@dirrm %%BUGZILLADIR%%
|
||||||
@dirrm %%PORTDOCS%%%%DOCSDIR%%/xml
|
@dirrm %%PORTDOCS%%%%DOCSDIR%%/xml
|
||||||
@dirrm %%PORTDOCS%%%%DOCSDIR%%/txt
|
@dirrm %%PORTDOCS%%%%DOCSDIR%%/txt
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME?= bugzilla
|
PORTNAME?= bugzilla
|
||||||
PORTVERSION?= 2.18
|
PORTVERSION?= 2.18
|
||||||
|
PORTREVISION?= 1
|
||||||
CATEGORIES?= devel
|
CATEGORIES?= devel
|
||||||
MASTER_SITES= ${MASTER_SITE_MOZILLA}
|
MASTER_SITES= ${MASTER_SITE_MOZILLA}
|
||||||
MASTER_SITE_SUBDIR= webtools webtools/archived
|
MASTER_SITE_SUBDIR= webtools webtools/archived
|
||||||
|
|
|
@ -1,11 +1,23 @@
|
||||||
--- checksetup.pl.orig Fri Jan 14 10:51:36 2005
|
|
||||||
+++ checksetup.pl Mon Jan 24 17:39:29 2005
|
$FreeBSD$
|
||||||
|
|
||||||
|
--- checksetup.pl.orig
|
||||||
|
+++ checksetup.pl
|
||||||
|
@@ -288,7 +288,7 @@
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name => 'File::Spec',
|
||||||
|
- version => '0.82'
|
||||||
|
+ version => '0'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name => 'File::Temp',
|
||||||
@@ -616,7 +616,7 @@
|
@@ -616,7 +616,7 @@
|
||||||
|
|
||||||
my $webservergroup_default;
|
my $webservergroup_default;
|
||||||
if ($^O !~ /MSWin32/i) {
|
if ($^O !~ /MSWin32/i) {
|
||||||
- $webservergroup_default = 'apache';
|
- $webservergroup_default = 'apache';
|
||||||
+ $webservergroup_default = 'nogroup';
|
+ $webservergroup_default = 'www';
|
||||||
} else {
|
} else {
|
||||||
$webservergroup_default = '';
|
$webservergroup_default = '';
|
||||||
}
|
}
|
||||||
|
|
|
@ -120,6 +120,31 @@
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/xml/troubleshooting.xml
|
%%PORTDOCS%%%%DOCSDIR%%/xml/troubleshooting.xml
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/xml/using.xml
|
%%PORTDOCS%%%%DOCSDIR%%/xml/using.xml
|
||||||
%%BUGZILLADIR%%/1x1.gif
|
%%BUGZILLADIR%%/1x1.gif
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth/Cookie.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth/CGI.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth/DB.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth/LDAP.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Attachment.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Auth.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Bug.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/BugMail.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/CGI.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Chart.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Config.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Constants.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/DB.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Error.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Flag.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/FlagType.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/RelationSet.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Search.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Series.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Template.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Token.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/User.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Util.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Template/Plugin/Bugzilla.pm
|
||||||
|
%%BUGZILLADIR%%/Bugzilla/Template/Plugin/Hook.pm
|
||||||
%%BUGZILLADIR%%/Bugzilla.pm
|
%%BUGZILLADIR%%/Bugzilla.pm
|
||||||
%%BUGZILLADIR%%/CGI.pl
|
%%BUGZILLADIR%%/CGI.pl
|
||||||
%%BUGZILLADIR%%/QUICKSTART
|
%%BUGZILLADIR%%/QUICKSTART
|
||||||
|
@ -133,6 +158,10 @@
|
||||||
%%BUGZILLADIR%%/colchange.cgi
|
%%BUGZILLADIR%%/colchange.cgi
|
||||||
%%BUGZILLADIR%%/collectstats.pl
|
%%BUGZILLADIR%%/collectstats.pl
|
||||||
%%BUGZILLADIR%%/config.cgi
|
%%BUGZILLADIR%%/config.cgi
|
||||||
|
%%BUGZILLADIR%%/js/duplicates.js
|
||||||
|
%%BUGZILLADIR%%/skins/standard/duplicates.css
|
||||||
|
%%BUGZILLADIR%%/skins/standard/global.css
|
||||||
|
%%BUGZILLADIR%%/skins/standard/show_multiple.css
|
||||||
%%CONTRIB%%%%BUGZILLADIR%%/contrib/BugzillaEmail.pm
|
%%CONTRIB%%%%BUGZILLADIR%%/contrib/BugzillaEmail.pm
|
||||||
%%CONTRIB%%%%BUGZILLADIR%%/contrib/README
|
%%CONTRIB%%%%BUGZILLADIR%%/contrib/README
|
||||||
%%CONTRIB%%%%BUGZILLADIR%%/contrib/README.Mailif
|
%%CONTRIB%%%%BUGZILLADIR%%/contrib/README.Mailif
|
||||||
|
@ -395,6 +424,13 @@
|
||||||
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/cmdline
|
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/cmdline
|
||||||
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/bugzilla-submit
|
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/bugzilla-submit
|
||||||
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib
|
%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib
|
||||||
|
@dirrm %%BUGZILLADIR%%/Bugzilla/Auth
|
||||||
|
@dirrm %%BUGZILLADIR%%/Bugzilla/Template/Plugin
|
||||||
|
@dirrm %%BUGZILLADIR%%/Bugzilla/Template
|
||||||
|
@dirrm %%BUGZILLADIR%%/Bugzilla
|
||||||
|
@dirrm %%BUGZILLADIR%%/js
|
||||||
|
@dirrm %%BUGZILLADIR%%/skins/standard
|
||||||
|
@dirrm %%BUGZILLADIR%%/skins
|
||||||
@dirrm %%BUGZILLADIR%%
|
@dirrm %%BUGZILLADIR%%
|
||||||
@dirrm %%PORTDOCS%%%%DOCSDIR%%/xml
|
@dirrm %%PORTDOCS%%%%DOCSDIR%%/xml
|
||||||
@dirrm %%PORTDOCS%%%%DOCSDIR%%/txt
|
@dirrm %%PORTDOCS%%%%DOCSDIR%%/txt
|
||||||
|
|
Loading…
Add table
Reference in a new issue