diff options
Diffstat (limited to 'system/dash/README')
-rw-r--r-- | system/dash/README | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/system/dash/README b/system/dash/README index c41d3417a6..4daf9c0301 100644 --- a/system/dash/README +++ b/system/dash/README @@ -1,4 +1,13 @@ DASH is a POSIX-compliant implementation of /bin/sh that aims to be as small as possible. It does this without sacrificing speed where possible. In fact, it is significantly faster than bash (the GNU Bourne-Again SHell) -for most tasks. +for most tasks. + +To patch in fixes from current git, add 'USE_GIT_PATCH=yes' to the command +line when building, like this: + +# USE_GIT_PATCH=yes sh dash.Slackbuild + +or, if you use fakeroot to build: + +$ fakeroot env USE_GIT_PATCH=yes sh dash.SlackBuild |