git » go-1.20.git » commit c72125e

Fix for FS#35278

author Alexander Rødseth
2013-06-01 11:06:55 UTC
committer Alexander Rødseth
2013-06-01 11:06:55 UTC
parent e9974e24caeb02d733bf604bb6f553acb7b349d9

Fix for FS#35278

PKGBUILD +4 -2

diff --git a/PKGBUILD b/PKGBUILD
index 2457f14..c2b3d31 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,11 +7,11 @@
 # Contributor: Mike Rosset <mike.rosset@gmail.com>
 # Contributor: Daniel YC Lin <dlin.tw@gmail.com>
 
-# TODO: Create split packages for the crosscompilation versions as well?
+# TODO: Create split packages for the crosscompilation versions as well? (just maybe)
 
 pkgname=go
 pkgver=1.1
-pkgrel=2
+pkgrel=3
 epoch=2
 pkgdesc='Google Go compiler and tools'
 arch=('x86_64' 'i686')
@@ -136,6 +136,8 @@ package() {
   rm -f $pkgdir/usr/share/go/doc/articles/wiki/get.bin
 
   install -Dm644 VERSION $pkgdir/usr/lib/go/VERSION
+
+  find "$pkgdir/usr/lib/go/pkg" -type f -exec touch '{}' +
 }
 
 # vim:set ts=2 sw=2 et: