aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2006-10-04 01:00:04 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2006-10-04 01:00:04 +0000
commit17c7b9bf562426e5137e43c62548ad116406448c (patch)
tree622a96e4838eace1d516e46a7307ce4a60a7fd60
parent6dff2a081642bde6615ac568c54a2dfd5126ff6d (diff)
downloadsimplepkg-17c7b9bf562426e5137e43c62548ad116406448c.tar.gz
simplepkg-17c7b9bf562426e5137e43c62548ad116406448c.tar.bz2
simplepkg 0.4.9pre3: createpkg small fix when searching for a slackbuild
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@12 04377dda-e619-0410-9926-eae83683ac58
-rwxr-xr-xsimplepkg.SlackBuild4
-rw-r--r--src/createpkg2
2 files changed, 3 insertions, 3 deletions
diff --git a/simplepkg.SlackBuild b/simplepkg.SlackBuild
index 74606de..4dc8a56 100755
--- a/simplepkg.SlackBuild
+++ b/simplepkg.SlackBuild
@@ -5,8 +5,8 @@
PACKAGE="simplepkg"
PACK_DIR="package-$PACKAGE"
-BUILD="4rha"
-VERSION="0.4.9pre2"
+BUILD="1rha"
+VERSION="0.4.9pre3"
ARCH="noarch"
LIBEXEC="/usr/libexec/$PACKAGE"
diff --git a/src/createpkg b/src/createpkg
index 5936887..a360153 100644
--- a/src/createpkg
+++ b/src/createpkg
@@ -128,7 +128,7 @@ function sync_repo {
function find_script {
- find $SLACKBUILDS | grep -v .svn | grep $1.SlackBuild
+ find $SLACKBUILDS | grep -v .svn | grep -e "/$1.SlackBuild$"
}