| Summary: | net-www/dansguardian will not compile | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | RumpletonBongworth <kfm> |
| Component: | New packages | Assignee: | Joshua Brindle (RETIRED) <method> |
| Status: | RESOLVED FIXED | ||
| Severity: | major | ||
| Priority: | High | ||
| Version: | unspecified | ||
| Hardware: | x86 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
| Attachments: | Working ebuild | ||
|
Description
RumpletonBongworth
2003-08-04 09:04:04 UTC
Created attachment 15492 [details]
Working ebuild
Simple fix, just having the ebuild create the directory before calling make
install
Here's the diff.
@@ -22,6 +22,7 @@
}
src_install() {
+ if [ -d "/etc/logrotate.d" ]; then mkdir -p ${D}/etc/logrotate.d; fi
make install || die
dodir /etc/init.d
fixed, i didn't notice this because i don't have logrotate installed and never encountered the issue |