From e83cfd6c27060966d985c82512da6cd8ae65e539 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 3 Jun 2009 08:48:04 +0000 Subject: [PATCH] alpine.mk: include the dependencies in the APK_INDEX The APK_FILES does not contain the dependencies for the wanted packages so we cannot use this variable when generating the index. --- alpine.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine.mk b/alpine.mk index 13ca9e5..b268662 100755 --- a/alpine.mk +++ b/alpine.mk @@ -186,7 +186,7 @@ $(ISO_REPOS_DIRSTAMP): $(ISO_PKGDIR)/APK_INDEX.gz $(ISO_PKGDIR)/APK_INDEX.gz: $(APK_FILES) @echo "==> iso: generating repository index" - @apk index $(APK_FILES) | gzip > $@ + @apk index $(ISO_PKGDIR)/*.apk | gzip > $@ $(ISO_KERNEL): $(KERNEL_APK) @echo "==> iso: install kernel $(KERNEL)"