Debian build fixes

This commit is contained in:
Ron Pedde
2006-10-12 02:40:56 +00:00
parent 6d54f3c826
commit db41f2a83a
6 changed files with 16 additions and 5 deletions

2
debian/postinst vendored
View File

@@ -2,7 +2,6 @@
action="$1"
CONF=/etc/mt-daapd.conf
PLAY=/etc/mt-daapd.playlist
CACHE=/var/cache/mt-daapd
case "$1" in
@@ -14,7 +13,6 @@ case "$1" in
fi
fi
if [ ! -f $CONF ] ; then cp /usr/share/doc/mt-daapd/mt-daapd.conf $CONF; fi
if [ ! -f $PLAY ] ; then cp /usr/share/doc/mt-daapd/mt-daapd.playlist $PLAY; fi
if [ ! -d $CACHE ] ; then mkdir -p $CACHE; fi
;;
esac