1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 04:21:16 +02:00

use $(LIBLZMA_LIBS) instead of -llzma

This is needed in case of non-standard lzma installation path that will
be specified in pkgconfig manifest as extra -L option for LDFLAGS.
This commit is contained in:
Dmitry Kalinkin 2016-05-31 03:20:11 -04:00
parent 5339ae4437
commit 78b00bbd8a
2 changed files with 2 additions and 1 deletions

View file

@ -6,6 +6,6 @@ libutil_DIR := $(d)
libutil_SOURCES := $(wildcard $(d)/*.cc)
libutil_LDFLAGS = -llzma -lbz2 -pthread $(OPENSSL_LIBS)
libutil_LDFLAGS = $(LIBLZMA_LIBS) -lbz2 -pthread $(OPENSSL_LIBS)
libutil_LIBS = libformat