mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
build: add WITHOUT_CLEAN workaround for 821aa63a09
The *w variants of ncurses directories went away, and the remaining names build the widechar variants instead of non-widechar variants. As such, the entire ncurses tree should be regenerated. Key off of lib/ncurses/ncursesw being present and remove the whole ncurses hierarchy if it is. Reviewed by: emaste (IRC)
This commit is contained in:
parent
9be9771c87
commit
14a16fd3e7
1 changed files with 6 additions and 0 deletions
|
|
@ -64,3 +64,9 @@ if [ -e "$OBJTOP"/sbin/pfctl/.depend.pf_ruleset.o ] && \
|
|||
echo "Removing old pf_ruleset dependecy file"
|
||||
rm -rf "$OBJTOP"/sbin/pfctl/.depend.pf_ruleset.o
|
||||
fi
|
||||
|
||||
# 20210108 821aa63a0940 non-widechar version of ncurses removed
|
||||
if [ -e "$OBJTOP"/lib/ncurses/ncursesw ]; then
|
||||
echo "Removing stale ncurses objects"
|
||||
rm -rf "$OBJTOP"/lib/ncurses "$OBJTOP"/obj-lib32/lib/ncurses
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue