libraries/avr-libc: Fix PRINT_PACKAGE_NAME.

Signed-off-by: B. Watson <yalhcru@gmail.com>
This commit is contained in:
B. Watson 2022-04-22 11:12:51 -04:00
parent 589e0f9133
commit 19ea2daec6
1 changed files with 0 additions and 9 deletions

View File

@ -28,15 +28,6 @@ if [ -z "$ARCH" ]; then
esac
fi
# Add latex to path if it's not already in it.
if [ $(echo $PATH | grep "/usr/share/texmf/bin" | wc -l) -le 0 ]; then
echo "Latex not in path, adding /usr/share/texmf/bin to path" ;
PATH=$PATH:/usr/share/texmf/bin ;
fi
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
exit 0