]> git.saurik.com Git - apt.git/commitdiff
Always pass a directory to find before an option
authorJulian Andres Klode <jak@debian.org>
Wed, 24 Aug 2016 00:22:45 +0000 (02:22 +0200)
committerJulian Andres Klode <jak@debian.org>
Fri, 26 Aug 2016 20:17:55 +0000 (22:17 +0200)
On BSD systems, we cannot simply use find -name or stuff, we
always have to pass a directory name first.

Gbp-Dch: ignore

test/integration/test-external-dependency-solver-protocol
vendor/getinfo

index c86038b1b2a01488af1d527c460d9a4be08c1d52..17a30cf2f76a3d6825941992568af8d404de938a 100755 (executable)
@@ -26,7 +26,7 @@ insertpackage 'experimental' 'coolstuff' 'i386,amd64' '3' 'Depends: cool, stuff'
 setupaptarchive
 
 testsuccess aptget install --solver apt coolstuff -s
-testempty find -name 'edsp.last.*'
+testempty find -name 'edsp.last.*'
 echo 'Dir::Log::Solver "edsp.last.xz";' > rootdir/etc/apt/apt.conf.d/log-edsp.conf
 
 testfailure aptget install --solver dump coolstuff -s
index 37e0c1480f86ab11a6a8da1b9b4f682889e280bb..37eb74cef629b906edd129c905f55e90bb5543a7 100755 (executable)
@@ -6,7 +6,7 @@ BASEDIR="$(readlink -f "$(dirname $0)")"
 getcurrent() {
        # search for an exact match to use the correct sources.list example
        cd $BASEDIR
-       DISTROS="$(find -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 2)"
+       DISTROS="$(find -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 2)"
        for DISTRO in $DISTROS; do
                if dpkg-vendor --is $DISTRO; then
                        echo $DISTRO