summaryrefslogtreecommitdiff
path: root/fatfs
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2014-02-10 14:41:18 +0100
committerJustus Winter <4winter@informatik.uni-hamburg.de>2014-02-10 14:41:54 +0100
commitab9163fbbf629d82e6eb455dde3221dbd02ea28a (patch)
tree22943e58103b0e2559263c4cfc41badcd458cca1 /fatfs
parentf968b1b2b0de0c16311f3781664dd4464822cea9 (diff)
fatfs: add bz2 to OTHERLIBS
* fatfs/Makefile (OTHERLIBS): Add bz2.
Diffstat (limited to 'fatfs')
-rw-r--r--fatfs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/fatfs/Makefile b/fatfs/Makefile
index c673b1ba..9a04fbb2 100644
--- a/fatfs/Makefile
+++ b/fatfs/Makefile
@@ -23,7 +23,7 @@ SRCS = inode.c main.c dir.c pager.c fat.c virt-inode.c node-create.c
OBJS = $(SRCS:.c=.o)
HURDLIBS = diskfs iohelp fshelp store pager ports ihash shouldbeinlibc
-OTHERLIBS = -lpthread
+OTHERLIBS = -lpthread -lbz2
include ../Makeconf