From 46e3b8087b86ef555b13be6807c34c555171fc4a Mon Sep 17 00:00:00 2001 From: Anand Jain Date: Mon, 28 Jan 2013 13:22:30 +0800 Subject: Btrfs-progs: move open_file_or_dir() to utils.c The definition of the function open_file_or_dir() is moved from common.c to utils.c in order to be able to share some common code between scrub and the device stats in the following step. That common code uses open_file_or_dir(). Since open_file_or_dir() makes use of the function dirfd(3), the required XOPEN version was raised from 6 to 7. Signed-off-by: Anand Jain Original-Signed-off-by: Stefan Behrens --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4dd405d3..1b1c045e 100644 --- a/Makefile +++ b/Makefile @@ -57,9 +57,9 @@ all: version $(progs) manpages version: $(Q)bash version.sh -btrfs: $(objects) btrfs.o help.o common.o $(cmds_objects) +btrfs: $(objects) btrfs.o help.o $(cmds_objects) @echo " [LD] $@" - $(Q)$(CC) $(CFLAGS) -o btrfs btrfs.o help.o common.o $(cmds_objects) \ + $(Q)$(CC) $(CFLAGS) -o btrfs btrfs.o help.o $(cmds_objects) \ $(objects) $(LDFLAGS) $(LIBS) -lpthread calc-size: $(objects) calc-size.o -- cgit v1.2.3