diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-06-03 08:48:04 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-06-03 08:48:04 +0000 |
commit | e83cfd6c27060966d985c82512da6cd8ae65e539 (patch) | |
tree | e6c12b1161a32fd4c15e84c57e53c3ef609cd458 | |
parent | 027f227852d644093b2eb1273e49c714c43eb8ee (diff) | |
download | abuild-e83cfd6c27060966d985c82512da6cd8ae65e539.tar.gz abuild-e83cfd6c27060966d985c82512da6cd8ae65e539.tar.bz2 abuild-e83cfd6c27060966d985c82512da6cd8ae65e539.tar.xz abuild-e83cfd6c27060966d985c82512da6cd8ae65e539.zip |
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.
-rwxr-xr-x | alpine.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)" |