diff options
author | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-01-05 09:49:17 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-01-05 09:49:17 +0100 |
commit | 5cae74e26f3802a7680350547eaf96980bfe1020 (patch) | |
tree | 307145354c8737613fd86616bd2dc5a9eeabfdde /mk | |
parent | 39f7dfa39746ba08b70cb492a17ffc80c82b2940 (diff) |
the resulting tar ball differs in size every time. disable checksum for git checkouts
Diffstat (limited to 'mk')
-rw-r--r-- | mk/fetch.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/fetch.mk b/mk/fetch.mk index 9a4eb1d8c..92c8ad659 100644 --- a/mk/fetch.mk +++ b/mk/fetch.mk @@ -68,11 +68,11 @@ $(1): if [ $$$$(echo $${PKG_VERSION}|wc -c) -eq 41 ]; then \ (cd $${PKG_NAME}-$${PKG_VERSION}; \ echo "Checking out $${PKG_VERSION}"; \ - git checkout -q $${PKG_VERSION}); \ + git checkout $${PKG_VERSION}); \ else \ - echo "Using head, disabling checksum check"; \ - touch $$$${filename}.nohash; \ + echo "Using head"; \ fi; \ + touch $$$${filename}.nohash; \ rm -rf $${PKG_NAME}-$${PKG_VERSION}/.git; \ tar cJf $${PKG_NAME}-$${PKG_VERSION}.tar.xz $${PKG_NAME}-$${PKG_VERSION}; \ rm -rf $${PKG_NAME}-$${PKG_VERSION}; \ |