Details
Details
Diff Detail
Diff Detail
- Repository
- rP FreeBSD ports repository
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
| misc/owrep/pkg-plist | ||
|---|---|---|
| 1 ↗ | (On Diff #35327) | ^ do as the nice line tells you :D |
| misc/owrep/Makefile | ||
|---|---|---|
| 20 ↗ | (On Diff #35314) | 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.sampleThat 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 | This is wrong. %%ETCDIR%% should always be followed by a /, it is a directory name, not a "bit of a filename". | |