mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
make: non-empty directories are ok to leave as is
This commit is contained in:
parent
db4a3f2b58
commit
c10d7d3d87
1 changed files with 1 additions and 1 deletions
|
|
@ -164,7 +164,7 @@ remove: check
|
|||
done
|
||||
@(cd ${.CURDIR}/src; find * -type d -depth) | while read DIR; do \
|
||||
if [ -d ${DESTDIR}${LOCALBASE}/$${DIR} ]; then \
|
||||
rmdir ${DESTDIR}${LOCALBASE}/$${DIR}; \
|
||||
rmdir ${DESTDIR}${LOCALBASE}/$${DIR} 2> /dev/null || true; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue