From f9c53d45050654728770c8e3a121c66fdeb90460 Mon Sep 17 00:00:00 2001 From: rhatto Date: Thu, 27 Nov 2008 20:40:56 +0000 Subject: fixes git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@556 04377dda-e619-0410-9926-eae83683ac58 --- trunk/src/createpkg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trunk/src/createpkg b/trunk/src/createpkg index dcc3baa..2db3269 100644 --- a/trunk/src/createpkg +++ b/trunk/src/createpkg @@ -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 -- cgit v1.2.3