summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2014-12-19 14:59:22 +0100
committerDavid Sterba <dsterba@suse.cz>2014-12-19 14:59:22 +0100
commitbae5edfde8ddda85e81b6c971de1ff471536cd05 (patch)
treed14ef492b52a35919d34613063ccfef9ef66b881
parentc2691f807ddd2c6b261c5707f6838a45d9275390 (diff)
btrfs-progs: remove false dependency on libm
It ends up in the final binary, but there are not math functions used. Signed-off-by: David Sterba <dsterba@suse.cz>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e1b0a88c..811fcfa9 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,7 @@ TESTS = fsck-tests.sh convert-tests.sh
INSTALL = install
prefix ?= /usr/local
bindir = $(prefix)/bin
-lib_LIBS = -luuid -lblkid -lm -lz -llzo2 -L. -pthread
+lib_LIBS = -luuid -lblkid -lz -llzo2 -L. -pthread
libdir ?= $(prefix)/lib
incdir = $(prefix)/include/btrfs
LIBS = $(lib_LIBS) $(libs_static)