diff options
| -rw-r--r-- | Makefile | 5 | ||||
| -rw-r--r-- | README | 7 |
2 files changed, 6 insertions, 6 deletions
@@ -9,7 +9,8 @@ COMMAND = got PKGNAME = gates-of-tartaros SSH = ssh -BASH_SHEBANG = /usr/bin/env bash +SH = bash +SH_SHEBANG = /usr/bin/env $(SH) ECHO = /usr/bin/echo EXAMPLES = lower-left-ponysay allow-uppercase issue-file commands no-empty-user @@ -43,7 +44,7 @@ cmd: got.install got.install: got cp "$<" "$@" - sed -i 's:#!/usr/bin/env bash:#!$(BASH_SHEBANG):g' "$@" + sed -i 's:#!/usr/bin/env bash:#!$(SH_SHEBANG):g' "$@" sed -i 's:@prefix@:$(PREFIX):g' "$@" sed -i 's:@dev@:$(DEV):g' "$@" sed -i 's:@etc@:$(SYSCONF):g' "$@" @@ -7,10 +7,9 @@ gates-of-tartaros uses more memory than agetty. You can configure your install to use dash instead of bash by running make with the -argument BASH_SHEBANG="/usr/bin/env dash". -Doing so will more halve the memory using, -reducing the memory usage to slightly below -that of agetty. +argument SH=dash. Doing so will more halve +the memory using, reducing the memory usage +to slightly below that of agetty. To log in with over SSH type: |
