diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:11:48 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:11:48 +0000 |
commit | 6bf38b4442e4dc8b32ca3cc223fd4c95a35a8b19 (patch) | |
tree | 23ccaf0bd32691ded0bf37edd1a83f010eee5871 /debian/coreutils.postinst | |
parent | Adding upstream version 9.1. (diff) | |
download | coreutils-6bf38b4442e4dc8b32ca3cc223fd4c95a35a8b19.tar.xz coreutils-6bf38b4442e4dc8b32ca3cc223fd4c95a35a8b19.zip |
Adding debian version 9.1-1.debian/9.1-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/coreutils.postinst')
-rw-r--r-- | debian/coreutils.postinst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/debian/coreutils.postinst b/debian/coreutils.postinst new file mode 100644 index 0000000..7f5fc53 --- /dev/null +++ b/debian/coreutils.postinst @@ -0,0 +1,8 @@ +#!/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 + +#DEBHELPER# |