diff options
-rw-r--r-- | repo/util/dash.xibuild | 4 |
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 } |