Fixed bug #453422: "xbps shouldn't depend on LZMA utils"

Do not link to libzmadec, rather to liblzma provided by xz.
Pointed by ojab in the bug, thanks!

--HG--
extra : convert_revision : xtraeme%40gmail.com-20091017030101-1cw1b11l923hy8cw
This commit is contained in:
Juan RP 2009-10-17 05:01:01 +02:00
parent 058b882037
commit 3ddf276437
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ include $(TOPDIR)/vars.mk
BIN = xbps-bin
OBJS = check.o install.o main.o remove.o show-deps.o ../xbps-repo/util.o
STATIC_LIBS += -lz -lacl -lbz2 -llzmadec
STATIC_LIBS += -lz -lacl -lbz2 -llzma
include $(TOPDIR)/prog.mk

View File

@ -3,6 +3,6 @@ include $(TOPDIR)/vars.mk
BIN = xbps-repo
OBJS = main.o util.o index.o
STATIC_LIBS += -lz -lbz2 -lacl -llzmadec
STATIC_LIBS += -lz -lbz2 -lacl -llzma
include $(TOPDIR)/prog.mk