fix typos in sbopkg.conf man page regarding TMP and OUTPUT; thanks to samac for the bug report.

This commit is contained in:
chess.griffin 2008-08-14 18:26:04 +00:00
parent e1b1e0e52e
commit d6502e7a23

View File

@ -74,14 +74,16 @@ It is possible to set or override environmental variables and pass
them to the SlackBuild scripts when they are built from within sbopkg.
For example, using the following in sbopkg.conf instead of a TMP line:
export TMP:${TMP:-/home/sbo/tmp}
export TMP=${TMP:-/home/sbo/tmp}
will set $TMP to /home/sbo/tmp for sbopkg purposes (i.e. where sbopkg logs are
kept) and also for building packages (i.e. instead of /tmp/SBo).
will set $TMP to /home/sbo/tmp for sbopkg purposes (i.e. where sbopkg
logs are kept) and also for building packages (i.e. instead of
/tmp/SBo).
You can also pass variables in sbopkg.conf that are not used by sbopkg at all:
You can also pass variables in sbopkg.conf that are not used by sbopkg
at all:
export OUTPUT:${OUTPUT:-/home/sbo/packages}
export OUTPUT=${OUTPUT:-/home/sbo/packages}
will set $OUTPUT for all SlackBuild packages built from within sbopkg (i.e.
instead of /tmp, which is the default in SBo SlackBuild scripts).