diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-07-30 21:48:03 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-07-30 21:48:03 +0200 |
commit | 96c1153afd783c40af8bce9add60fb0b6f18080d (patch) | |
tree | 7c5e59697d6304b984e2ccfa081b61280d950cbd /methods | |
parent | ac005224d02d7d993074697f11009ff40f57cb6b (diff) |
* methods/makefile:
- install lzma symlink method (for full lzma support)
* debian/control:
- suggest "lzma"
Diffstat (limited to 'methods')
-rw-r--r-- | methods/makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/methods/makefile b/methods/makefile index f178cbbea..f0fd4e414 100644 --- a/methods/makefile +++ b/methods/makefile @@ -80,9 +80,9 @@ LIB_MAKES = apt-pkg/makefile SOURCE = rsh.cc include $(PROGRAM_H) -# SSH and vzip2 method symlink -binary: $(BIN)/ssh $(BIN)/bzip2 -veryclean: clean-$(BIN)/ssh clean-$(BIN)/bzip2 +# SSH and bzip2 method symlink +binary: $(BIN)/ssh $(BIN)/bzip2 $(BIN)/lzma +veryclean: clean-$(BIN)/ssh clean-$(BIN)/bzip2 clean-$(BIN)/lzma $(BIN)/ssh: echo "Installing ssh method link" ln -fs rsh $(BIN)/ssh @@ -92,5 +92,10 @@ clean-$(BIN)/ssh: $(BIN)/bzip2: echo "Installing bzip2 method link" ln -fs gzip $(BIN)/bzip2 +$(BIN)/lzma: + echo "Installing lzma method link" + ln -fs gzip $(BIN)/lzma clean-$(BIN)/bzip2: -rm $(BIN)/bzip2 +clean-$(BIN)/lzma: + -rm $(BIN)/lzma |