summaryrefslogtreecommitdiff
path: root/methods
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2011-02-22 18:11:10 +0100
committerDavid Kalnischkies <kalnischkies@gmail.com>2011-02-22 18:11:10 +0100
commitb2430e6d1713e26d461f08873ac872918eb28283 (patch)
tree427724cee2fde9586fae00dcdcef9ebba86d963a /methods
parentb7080ced608f012aee2566afc724c3727e75fc1b (diff)
* apt-pkg/aptconfiguration.cc:
- support download of xz-compressed indexes files
Diffstat (limited to 'methods')
-rw-r--r--methods/makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/methods/makefile b/methods/makefile
index 4ee356cec..6ba51058e 100644
--- a/methods/makefile
+++ b/methods/makefile
@@ -94,8 +94,8 @@ SOURCE = bzip2.cc
include $(PROGRAM_H)
# SSH and lzma method symlink
-binary: $(BIN)/ssh $(BIN)/lzma
-veryclean: clean-$(BIN)/ssh clean-$(BIN)/lzma
+binary: $(BIN)/ssh $(BIN)/lzma $(BIN)/xz
+veryclean: clean-$(BIN)/ssh clean-$(BIN)/lzma clean-$(BIN)/xz
$(BIN)/ssh:
echo "Installing ssh method link"
@@ -108,3 +108,9 @@ $(BIN)/lzma:
ln -fs bzip2 $(BIN)/lzma
clean-$(BIN)/lzma:
-rm $(BIN)/lzma
+
+$(BIN)/xz:
+ echo "Installing xz method link"
+ ln -fs bzip2 $(BIN)/xz
+clean-$(BIN)/xz:
+ -rm $(BIN)/xz