From d6502e7a23da502b3e963f4203d49602b5ee10aa Mon Sep 17 00:00:00 2001 From: "chess.griffin" Date: Thu, 14 Aug 2008 18:26:04 +0000 Subject: [PATCH] fix typos in sbopkg.conf man page regarding TMP and OUTPUT; thanks to samac for the bug report. --- src/usr/man/man5/sbopkg.conf.5 | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/usr/man/man5/sbopkg.conf.5 b/src/usr/man/man5/sbopkg.conf.5 index bed2c87..b491ed6 100644 --- a/src/usr/man/man5/sbopkg.conf.5 +++ b/src/usr/man/man5/sbopkg.conf.5 @@ -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).