]> gitweb.fluxo.info Git - simplepkg.git/commitdiff
fixes
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>
Thu, 27 Nov 2008 20:40:56 +0000 (20:40 +0000)
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>
Thu, 27 Nov 2008 20:40:56 +0000 (20:40 +0000)
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@556 04377dda-e619-0410-9926-eae83683ac58

trunk/src/createpkg

index dcc3baa2d317763a295b32c6d58615deea18ff78..2db32696d517d4924d24e465384d074ac5eacaff 100644 (file)
@@ -544,7 +544,7 @@ if [ $REMOVE_OLD_PACKAGE -eq $on ]; then
     PACKAGE_ARCH="`package_arch $PKG_NAME`"
     PACKAGE_BUILD="`package_build $PKG_NAME`"
 
-    for file in `find . -name "$PACKAGE-*-*-*.*"`; do
+    for file in `find . -mindepth 2 -name "$PACKAGE-*-*-*.*"`; do
       if svn_check $file; then
         # Just delete packages with different arch, version or build number
         if [ "`package_version $file`" != "$PACKAGE_VERSION" ] || \
@@ -572,7 +572,7 @@ if [ $REMOVE_OLD_PACKAGE -eq $on ]; then
     cd $cwd
 
   else
-    find $MAKEPKG_REPOS -name "$PACKAGE-*-*-*.*" -exec rm {} 2>/dev/null \;
+    find $MAKEPKG_REPOS -mindepth 2 -name "$PACKAGE-*-*-*.*" -exec rm {} 2>/dev/null \;
     find $MAKEPKG_REPOS -name "$PACKAGE.slack-required" -exec rm {} 2>/dev/null \;
   fi
 fi