~swag/armagetronad/0.2.9-sty+ct+ap-fork

« back to all changes in this revision

Viewing changes to batch/make/uninstall

Automatic merging of commits that would change history order:
   ------------------------------------------------------------
   revno: 1282.1.2
   committer: Daniel Lee Harple <leeharple@gmail.com>
   branch nick: 0.2.8-armagetronad-work
   timestamp: Mon 2011-07-18 21:46:08 -0400
   message:
     Added ENCODING ladderlog event.
   ------------------------------------------------------------
   revno: 1282.1.1
   committer: Daniel Lee Harple <leeharple@gmail.com>
   branch nick: 0.2.8-armagetronad-work
   timestamp: Wed 2011-07-13 00:49:08 -0400
   message:
     WHITELIST_ENEMIES_USERNAME requires authentication support to be enabled

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
DEST=$(pwd)/.foruninstall
42
42
 
43
43
# test for recursion
44
 
if echo ${DESTDIR} | grep "\.foruninstall$"; then
 
44
if echo ${DESTDIR} | grep ${DEST}; then
45
45
   echo "Recursion detected, aborting."
46
46
   exit 0
47
47
fi
48
48
 
49
 
if ${MAKE} DESTDIR=${DEST} install > /dev/null; then
 
49
if DESTDIR=${DEST} ${MAKE} install > /dev/null; then
50
50
echo "Success!"
51
51
else
52
52
echo "Failure :("