tRemove useless git checkout in build.mk - distro - linux distribution experiments
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit fba58d446aba2c84cf592625e4e7e8ea48ffb488
 (DIR) parent e206aa1af1c1c37fb3564cbc35772c5c8cf1fb87
 (HTM) Author: z3bra <contactatz3bradotorg>
       Date:   Mon, 29 Oct 2018 12:14:05 +0100
       
       Remove useless git checkout in build.mk
       
       Diffstat:
         M pkg/build.mk                        |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/pkg/build.mk b/pkg/build.mk
       t@@ -27,7 +27,7 @@ $archive:
                mkdir -p $(dirname $archive)
                if [ -n "$git" ]; then
                        git clone --bare $git .repo
       -                (cd .repo; git checkout $ver; git archive --prefix $pkg-$ver/ $ver) | bzip2 > $archive
       +                (cd .repo; git archive --prefix $pkg-$ver/ $ver) | bzip2 > $archive
                        rm -rf .repo
                elif [ -n "$url" ]; then
                        curl -L $url > $archive