From d6f471008b3e9b64689ac9f20f2c9f5582115d98 Mon Sep 17 00:00:00 2001 From: slakmagik Date: Sat, 30 May 2009 02:54:00 +0000 Subject: [PATCH] fix a couple of errors in the comment to split_pkg_name() --- src/usr/sbin/sbopkg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/usr/sbin/sbopkg b/src/usr/sbin/sbopkg index 3639852..cc4f4c7 100755 --- a/src/usr/sbin/sbopkg +++ b/src/usr/sbin/sbopkg @@ -75,10 +75,10 @@ crunch_fmt() { split_pkg_name() { # This function takes a string in the Slackware format NAME-VER-ARCH-BUILD - # (with an optional _TAG) and splits the string into those respective + # (with an optional TAG) and splits the string into those respective # PKG_-prefixed variables. (foo-1.0-i486-1_bar results in 'foo' being # assigned to PKG_NAME, '1.0' being assigned to PKG_VER, 'i486' being - # assigned to PKG_ARCH, '1' being assigned to PKG_BUILD, and 'bar' being + # assigned to PKG_ARCH, '1' being assigned to PKG_BUILD, and '_bar' being # assigned to PKG_TAG. If the string has no tag, PKG_TAG will be an empty # string.