source buildconf_dev by default

This commit is contained in:
speedie 2023-05-07 18:58:51 +02:00
parent 8f8f267830
commit 2186314222
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View file

@ -3,3 +3,4 @@
*zst*
*sig*
spmenu
buildconf_dev

View file

@ -39,7 +39,8 @@ check() {
}
loadconf() {
[ -x "buildconf" ] && source buildconf
[ -x "buildconf" ] && [ ! -x "buildconf_dev" ] && source buildconf
[ -x "buildconf_dev" ] && source buildconf_dev
# mandatory deps
[ "$freetype" = "false" ] && printf "Freetype not found. Install it.\n" && exit 1