| Summary: | sysutils/bareos-server: Need perl to to run make_catalog_backup.pl | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Ports & Packages | Reporter: | Douglas K. Rand <doug.rand> | ||||
| Component: | Individual Port(s) | Assignee: | Jose Alonso Cardenas Marquez <acm> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | Keywords: | patch | ||||
| Priority: | --- | Flags: | bugzilla:
maintainer-feedback?
(acm) |
||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
Fix on latest commit of sysutils/bareos-dir. Thanks!! A commit references this bug: Author: acm Date: Fri Apr 21 18:25:01 UTC 2017 New revision: 439118 URL: https://svnweb.freebsd.org/changeset/ports/439118 Log: - Fix Shebang PR: 209811 Changes: head/sysutils/bareos-server/Makefile |
Created attachment 170755 [details] Patch to fix hash-bang and add perl5 to USES The make_catalog_backup.pl script uses this trick: #!/usr/bin/env perl to try to invoke pearl. But the Bareos install doesn't add /usr/local/bin to the PATH. So I patched that script to use #!/usr/local/bin/perl And added perl5 to the USES in the Makefile. Thanks for the Bareos port.