diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-05-28 15:50:45 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-05-28 15:50:45 +0000 |
commit | 4e05a161e54fe05902b99eff521aa0759b102f05 (patch) | |
tree | 9014ab8ce74e4fb2f0115c5518c62879bc269324 /trunk/scripts/makedist.sh | |
parent | e45bc035931b2c9ef13b85f98a3d4833a8dec8a9 (diff) | |
download | mpd-4e05a161e54fe05902b99eff521aa0759b102f05.tar.gz mpd-4e05a161e54fe05902b99eff521aa0759b102f05.tar.xz mpd-4e05a161e54fe05902b99eff521aa0759b102f05.zip |
Making branch for 0.13.0 fixes.
git-svn-id: https://svn.musicpd.org/mpd/branches/branch-0.13.0-fixes@6330 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'trunk/scripts/makedist.sh')
-rwxr-xr-x | trunk/scripts/makedist.sh | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/trunk/scripts/makedist.sh b/trunk/scripts/makedist.sh deleted file mode 100755 index d342cea3a..000000000 --- a/trunk/scripts/makedist.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -PWD=`pwd` - -## If we're not in the scripts directory -## assume the base directory. -if test "`basename $PWD`" == "scripts"; then - cd ../ -else - MYOLDPWD=`pwd` - cd `dirname $0`/../ -fi - -if test -e Makefile -then - make distclean -fi -./autogen.sh -make -make dist - -if test "`basename $PWD`" == "scripts"; then - cd contrib/ -else - cd $MYOLDPWD -fi |