Fixed sys/purge.sh to work on systems where the GNU make binary is called "gmake".

This commit is contained in:
sghctoma 2015-10-31 20:49:22 +01:00 committed by pancake
parent a6dccd04b2
commit 9a8263eafb

View File

@ -1,4 +1,10 @@
#!/bin/sh
MAKE=make
gmake --help >/dev/null 2>&1
[ $? = 0 ] && MAKE=gmake
PREFIX="$1"
if [ -z "${PREFIX}" ]; then
PREFIX=/usr
@ -6,4 +12,4 @@ fi
[ -z "${SUDO}" ] && SUDO=sudo
echo "Uninstalling r2 from ${PREFIX}..."
./configure --prefix="${PREFIX}"
${SUDO} make purge
${SUDO} ${MAKE} purge