btrfs-progs: fix btrfs-fragments build

When I made all the btrfs-foo.c targets generic, I somehow
managed to break the libs definition for btrfs-fragments by
dropping the "s" off the end.

Fix that, although apparently nobody is building this tool.  :)

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
This commit is contained in:
Eric Sandeen 2014-05-30 11:29:19 -05:00 committed by David Sterba
parent 660fe77615
commit 11ffe23531
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ progs = mkfs.btrfs btrfs-debug-tree btrfsck \
# specify btrfs_foo_libs = <list of libs>; see $($(subst...)) rules below # specify btrfs_foo_libs = <list of libs>; see $($(subst...)) rules below
btrfs_convert_libs = -lext2fs -lcom_err btrfs_convert_libs = -lext2fs -lcom_err
btrfs_image_libs = -lpthread btrfs_image_libs = -lpthread
btrfs_fragment_libs = -lgd -lpng -ljpeg -lfreetype btrfs_fragments_libs = -lgd -lpng -ljpeg -lfreetype
SUBDIRS = SUBDIRS =
BUILDDIRS = $(patsubst %,build-%,$(SUBDIRS)) build-Documentation BUILDDIRS = $(patsubst %,build-%,$(SUBDIRS)) build-Documentation