Package: git-core
Version: 1:1.6.2.4-1
Seveity: wishlist
The fixing of 520116 / 521724 leaves us with another problem:
Wasting space in /usr/bin.
Could you please consider soft links?
If you need some shell (for debian/rules) to do it:
set -e
cd usr/bin
mv git ../lib/git-core
ln -s ../lib/git-core/git .
for i in *
do
if cmp -s $i ../lib/git-core/$i
then
ln -sf ../lib/git-core/$i .
fi
done
this should do the right thing.
Elrond
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]