mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 16:48:36 -05:00
pkgbase: Do not record dependency on non-existent libcompat package
libcompat only provides a .a which is put in the -dev package. Add a special record for it so we do not require a dependency on the non-existent package FreeBSD-libcompat. Sponsored by: Beckhoff Automation GmbH & Co. KG
This commit is contained in:
parent
aab8c844b9
commit
5391bcf0f7
1 changed files with 12 additions and 0 deletions
|
|
@ -56,6 +56,18 @@ main() {
|
|||
outname=${outname%%-lib32_dev}
|
||||
_descr="32-bit Libraries, Development Files"
|
||||
;;
|
||||
libcompat-dev)
|
||||
outname=${outname%%-dev}
|
||||
_descr="Development Files"
|
||||
;;
|
||||
libcompat-man)
|
||||
outname=${outname%%-dev}
|
||||
_descr="Development Files"
|
||||
;;
|
||||
libcompat-lib32_dev)
|
||||
outname=${outname%%-lib32_dev}
|
||||
_descr="32-bit Libraries, Development Files"
|
||||
;;
|
||||
|
||||
utilities)
|
||||
uclfile="${uclfile}"
|
||||
|
|
|
|||
Loading…
Reference in a new issue