summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author David Somero2010-06-04 07:17:00 +0200
committer David Somero2010-06-04 07:17:00 +0200
commitd7cff4feb712e381463fca7bf8c319537225980a (patch)
tree5153be6165bdc127c0c3284d5e912aa3b3db1357 /system
parent8d92af851aab4a735a1c1040f50aecd4061e8a79 (diff)
downloadslackbuilds-d7cff4feb712e381463fca7bf8c319537225980a.tar.gz
system/ulogd: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/ulogd/ulogd.SlackBuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/ulogd/ulogd.SlackBuild b/system/ulogd/ulogd.SlackBuild
index c2acea1d45..c07609ee47 100644
--- a/system/ulogd/ulogd.SlackBuild
+++ b/system/ulogd/ulogd.SlackBuild
@@ -30,10 +30,10 @@ TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
- i?86) export ARCH=i486 ;;
- arm*) export ARCH=arm ;;
+ i?86) ARCH=i486 ;;
+ arm*) ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
- *) export ARCH=$( uname -m ) ;;
+ *) ARCH=$( uname -m ) ;;
esac
fi