diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-02-13 17:32:29 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-02-28 09:42:03 -0600 |
commit | 49795dbaaccf9989cd61c1e876dc412fadfa30a0 (patch) | |
tree | 3cb891d2e8bf20209a28d93c145d696ef2912635 /network/mod_perl | |
parent | d85aa95e6a99aae9d6a0125a6b1037fc3e1c232f (diff) | |
download | slackbuilds-49795dbaaccf9989cd61c1e876dc412fadfa30a0.tar.gz |
network/mod_perl: Install config file in /etc/httpd/extra/
(instead of toplevel /etc/httpd/ directory)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/mod_perl')
-rw-r--r-- | network/mod_perl/README | 2 | ||||
-rw-r--r-- | network/mod_perl/mod_perl.SlackBuild | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/network/mod_perl/README b/network/mod_perl/README index 7002031031..4c32466ad2 100644 --- a/network/mod_perl/README +++ b/network/mod_perl/README @@ -7,4 +7,4 @@ no external Perl interpreter has to be started. To tell Apache to load it, you'll have to put the following line somewhere into /etc/httpd/httpd.conf: - Include /etc/httpd/mod_perl.conf + Include /etc/httpd/extra/mod_perl.conf diff --git a/network/mod_perl/mod_perl.SlackBuild b/network/mod_perl/mod_perl.SlackBuild index 7e096af9c5..a0892bf752 100644 --- a/network/mod_perl/mod_perl.SlackBuild +++ b/network/mod_perl/mod_perl.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=mod_perl VERSION=2.0.4 -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} # Automatically determine the architecture we're building on: @@ -68,9 +68,9 @@ perl Makefile.PL MP_APXS=/usr/sbin/apxs INSTALLDIRS=vendor make make install DESTDIR=$PKG -mkdir -p $PKG/etc/httpd +mkdir -p $PKG/etc/httpd/extra sed "s%@baselibdir@%lib${LIBDIRSUFFIX}%g" $CWD/mod_perl.conf > \ - $PKG/etc/httpd/mod_perl.conf.example + $PKG/etc/httpd/extra/mod_perl.conf.example mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a Changes INSTALL LICENSE README* RELEASE STATUS \ |