summaryrefslogtreecommitdiffstats
path: root/debian/coreutils.postinst
blob: 7a1e7a594b5d65da39b4b645e44bb850a3f9930e (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
set -e

if [ "$1" = 'configure' -a ! -e '/usr/bin/touch' ]; then
  ln -s /bin/touch /usr/bin/touch
fi

#DEBHELPER#