From ce58706dd0e25ed4f820f18d54cafe4280a7cfd6 Mon Sep 17 00:00:00 2001 From: Michel Blanc Date: Wed, 8 Oct 2014 10:41:29 +0200 Subject: [PATCH] Fixes Arch PKGBUILD Build was failing with new Ansible submodule setup for core and extras modules. Integrated fix from @firecat53 Added @firecat53 to contributors. --- packaging/arch/PKGBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index f4db6fbd7b..f2f9422906 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -1,4 +1,5 @@ # Maintainer: Michel Blanc +# Contributor: Scott Hansen https://github.com/firecat53 # Contributor: Buce # Contributor: Bartłomiej Piotrowski # Contributor: cgtx @@ -9,7 +10,7 @@ # Contributor: Michael DeHaan pkgname=ansible-git -pkgver=1.1.4095.g3f2f5fe +pkgver=1.6.0.1835.ga1809a3 pkgrel=1 pkgdesc='Radically simple IT automation platform' arch=('any') @@ -33,6 +34,7 @@ pkgver() { build() { cd $pkgname + git submodule update --init --recursive make PYTHON=python2 } @@ -40,7 +42,6 @@ package() { cd $pkgname install -dm755 $pkgdir/usr/share/ansible - cp -dpr --no-preserve=ownership ./library/* "$pkgdir/usr/share/ansible/" cp -dpr --no-preserve=ownership ./examples "$pkgdir/usr/share/ansible" python2 setup.py install -O1 --root="$pkgdir"