Details
Details
Diff Detail
Diff Detail
- Repository
- rP FreeBSD ports repository
- Lint
No Lint Coverage - Unit
No Test Coverage - Build Status
Buildable 12779 Build 13047: arc lint + arc unit
Event Timeline
misc/owrep/pkg-plist | ||
---|---|---|
1 ↗ | (On Diff #35327) | ^ do as the nice line tells you :D |
misc/owrep/Makefile | ||
---|---|---|
20 | FWIW, the issue is that %% things are to pass variables into the plist. If the plist is in the Makefile, there's no need to expand variables. PLIST_FILES= %%ETCDIR%%.conf.sample should just be: PLIST_FILES= ${ETCDIR_REL}.conf.sample That said, %%ETCDIR%%.conf.sample is pretty gross. That really should be etc/%%PORTNAME%%.conf.sample. What absolutely do require a separate plist are commands (like @sample, @dir, etc.). |
head/misc/owrep/pkg-plist | ||
---|---|---|
2 ↗ | (On Diff #35334) | This is wrong. %%ETCDIR%% should always be followed by a /, it is a directory name, not a "bit of a filename". |