mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-23 16:30:13 +00:00
buildsys: show package name if not found
current error " no package.mk file found in " does not give a hint what package (dependency) is missing
This commit is contained in:
parent
26c49caf2b
commit
fb2279d505
@ -26,7 +26,7 @@ if [ -z "$1" ]; then
|
||||
fi
|
||||
|
||||
if [ ! -f $PKG_DIR/package.mk ]; then
|
||||
printf "${boldred} no package.mk file found in $PKG_DIR${endcolor}\n"
|
||||
printf "${boldred}$1: no package.mk file found${endcolor}\n"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
@ -53,7 +53,7 @@ if [ -n "$PKG_ARCH" -a ! "$PKG_ARCH" = "any" ]; then
|
||||
fi
|
||||
|
||||
if [ ! -f $PKG_DIR/package.mk ]; then
|
||||
printf "${boldred} no package.mk file found in $PKG_DIR${endcolor}\n"
|
||||
printf "${boldred}${PACKAGE_NAME}: no package.mk file found${endcolor}\n"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
@ -26,7 +26,7 @@ if [ -z "$1" ]; then
|
||||
fi
|
||||
|
||||
if [ ! -f $PKG_DIR/package.mk ]; then
|
||||
printf "${boldred} no package.mk file found in $PKG_DIR${endcolor}\n"
|
||||
printf "${boldred}$1: no package.mk file found${endcolor}\n"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user