mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
plugins: fix include and indexing after category intro; #1
This commit is contained in:
parent
b295e1280b
commit
df39c2dc2c
3 changed files with 5 additions and 5 deletions
6
Makefile
6
Makefile
|
|
@ -3,11 +3,11 @@ PAGER?= less
|
|||
all:
|
||||
@cat ${.CURDIR}/README.md | ${PAGER}
|
||||
|
||||
CATEGORIES= devel
|
||||
CATEGORIES= devel sysutils
|
||||
|
||||
.for CATEGORY in ${CATEGORIES}
|
||||
_PLUGIN_DIRS!= ls -1d ${CATEGORY}/*
|
||||
PLUGIN_DIRS+= ${_PLUGIN_DIRS}
|
||||
_${CATEGORY}!= ls -1d ${CATEGORY}/*
|
||||
PLUGIN_DIRS+= ${_${CATEGORY}}
|
||||
.endfor
|
||||
|
||||
list:
|
||||
|
|
|
|||
|
|
@ -4,4 +4,4 @@ PLUGIN_DESC= A test package
|
|||
PLUGIN_DEPENDS= git vim-lite tmux
|
||||
PLUGIN_MAINTAINER= franco@opnsense.org
|
||||
|
||||
.include "../Mk/plugins.mk"
|
||||
.include "../../Mk/plugins.mk"
|
||||
|
|
|
|||
|
|
@ -4,4 +4,4 @@ PLUGIN_DESC= VMware tools wrapper
|
|||
PLUGIN_DEPENDS= open-vm-tools-nox11
|
||||
PLUGIN_MAINTAINER= franco@opnsense.org
|
||||
|
||||
.include "../Mk/plugins.mk"
|
||||
.include "../../Mk/plugins.mk"
|
||||
|
|
|
|||
Loading…
Reference in a new issue