diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-02-10 14:41:18 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-02-10 14:41:54 +0100 |
commit | ab9163fbbf629d82e6eb455dde3221dbd02ea28a (patch) | |
tree | 22943e58103b0e2559263c4cfc41badcd458cca1 | |
parent | f968b1b2b0de0c16311f3781664dd4464822cea9 (diff) |
fatfs: add bz2 to OTHERLIBS
* fatfs/Makefile (OTHERLIBS): Add bz2.
-rw-r--r-- | fatfs/Makefile | 2 |
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 |