Commit 694050ff authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

dependencies.sh: only javac and jar are needed by classpath

parent f290aa70
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -159,7 +159,7 @@ if grep ^BR2_TOOLCHAIN_BUILDROOT=y $CONFIG_FILE > /dev/null && \
   fi
fi
if grep -q ^BR2_PACKAGE_CLASSPATH=y $CONFIG_FILE ; then
    for prog in java javac jar; do
    for prog in javac jar; do
	if ! which $prog > /dev/null ; then
	    /bin/echo -e "\nYou must install '$prog' on your build machine\n" >&2
	    exit 1