summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-02-21 20:40:32 +0000
committerdavidovski <david@davidovski.xyz>2022-02-21 20:40:32 +0000
commitd360f4601f24febd6461b3163b2dd93401db67b0 (patch)
tree21d6a6d045295d51dfed384a4c8c33ff65f2680c
parent46f9435fa15a91c59b356a6f7b2a1c29275c6698 (diff)
moved dash to /usr/bin
-rw-r--r--repo/util/dash.xibuild4
1 files changed, 3 insertions, 1 deletions
diff --git a/repo/util/dash.xibuild b/repo/util/dash.xibuild
index efa371e..e3344f2 100644
--- a/repo/util/dash.xibuild
+++ b/repo/util/dash.xibuild
@@ -8,12 +8,14 @@ SOURCE=http://gondor.apana.org.au/~herbert/dash/files/dash-$PKG_VER.tar.gz
DESC="POSIX compliant shell that aims to be as small as possible"
build () {
- ./configure --bindir=/bin --mandir=/usr/share/man &&
+ ./configure --bindir=/usr/bin --mandir=/usr/share/man &&
make
}
package () {
make DESTDIR=$PKG_DEST install
+
+
ln -s dash $PKG_DEST/usr/bin/sh
}