[pacman-dev] [PATCH] makepkg: download sources for all architectures when making source package

Allan McRae allan at archlinux.org
Mon Dec 22 06:20:09 UTC 2014


We validated all sources when making a source package, whether or not they
are included in the tarball.

Signed-off-by: Allan McRae <allan at archlinux.org>
---

makepkg --source was broken when source_i686 and source_x86_64 were present.
This may count as the first real breakage!

 scripts/makepkg.sh.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index 60276f6..ae8cf57 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -3607,7 +3607,7 @@ if (( SOURCEONLY )); then
 		download_sources allarch
 	elif ( (( ! SKIPCHECKSUMS )) || \
 			( (( ! SKIPPGPCHECK )) && source_has_signatures ) ); then
-		download_sources novcs
+		download_sources allarch novcs
 	fi
 	check_source_integrity all
 	cd_safe "$startdir"
-- 
2.2.1


More information about the pacman-dev mailing list