diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2017-08-12 01:37:56 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-08-28 08:40:42 +0000 |
commit | b506a63a0ac97f2c5c1ad9ef3435c898f165e2d8 (patch) | |
tree | 4154ecaa151ee253a578874bcb116abf95f92e85 /main/sed/sed.post-deinstall | |
parent | 31e9fce843cb75e2fc1e725ff766030f80a58b2a (diff) | |
download | aports-b506a63a0ac97f2c5c1ad9ef3435c898f165e2d8.tar.bz2 aports-b506a63a0ac97f2c5c1ad9ef3435c898f165e2d8.tar.xz |
main/sed: fix deinstall script and modernise APKBUILD
Diffstat (limited to 'main/sed/sed.post-deinstall')
-rw-r--r-- | main/sed/sed.post-deinstall | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/sed/sed.post-deinstall b/main/sed/sed.post-deinstall index 81dde1ec59..5ec0031a45 100644 --- a/main/sed/sed.post-deinstall +++ b/main/sed/sed.post-deinstall @@ -1,6 +1,6 @@ #!/bin/sh -# we cannot rely on the busbox trigger since sed might be used from install +# we cannot rely on the busybox trigger since sed might be used from install # scripts -exec /bin/busybox --install -s +[ -x /bin/busybox ] && exec /bin/busybox --install -s |