9 lines
136 B
Plaintext
9 lines
136 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
set -e
|
||
|
|
|
||
|
|
if [ "$1" = 'configure' -a ! -e "$DPKG_ROOT/usr/bin/touch" ]; then
|
||
|
|
ln -s /bin/touch "$DPKG_ROOT/usr/bin/touch"
|
||
|
|
fi
|
||
|
|
|
||
|
|
|