null+****@clear*****
null+****@clear*****
2010年 8月 25日 (水) 10:57:56 JST
Kouhei Sutou 2010-08-25 01:57:56 +0000 (Wed, 25 Aug 2010)
New Revision: e5aa87917fbe57689ab8c371cc01796597aaa6c0
Log:
add download target.
Modified files:
apt/Makefile.am
apt/build-in-chroot.sh
Modified: apt/Makefile.am (+5 -0)
===================================================================
--- apt/Makefile.am 2010-08-25 01:01:52 +0000 (74ba06b)
+++ apt/Makefile.am 2010-08-25 01:57:56 +0000 (5ed4060)
@@ -12,6 +12,11 @@ remove-existing-packages:
find $${distribution}/pool -type f -delete; \
done
+download:
+ for distribution in $(DISTRIBUTIONS); do \
+ rsync -avz $(RSYNC_PATH)/$${distribution}/ $${distribution}; \
+ done
+
update:
./update-repository.sh '$(PACKAGE_NAME)' '$(ARCHITECTURES)' '$(CODES)'
Modified: apt/build-in-chroot.sh (+1 -1)
===================================================================
--- apt/build-in-chroot.sh 2010-08-25 01:01:52 +0000 (b672759)
+++ apt/build-in-chroot.sh 2010-08-25 01:57:56 +0000 (cb7086f)
@@ -118,5 +118,5 @@ EOF
for architecture in $ARCHITECTURES; do
for code_name in $CODES; do
build $architecture $code_name
- done;
+ done
done