btrfs-progs: build: remove directory-specific include paths
The convert and image utilities used include, but we specify the headers by path relative to the toplevel directory for clarity. The compiler option is not needed. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
dc1c2c4bb0
commit
6550f5b9ed
|
@ -400,7 +400,7 @@ btrfstune.static: btrfstune.static.o $(static_objects) $(static_libbtrfs_objects
|
|||
|
||||
btrfs-image: image/main.o $(objects) $(libs_static)
|
||||
@echo " [LD] $@"
|
||||
$(Q)$(CC) $(CFLAGS) -I$(TOPDIR)/image -o $@ $^ $(LDFLAGS) $(LIBS) $(LIBS_COMP)
|
||||
$(Q)$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) $(LIBS_COMP)
|
||||
|
||||
btrfs-image.static: image/main.static.o $(static_objects) $(static_libbtrfs_objects)
|
||||
@echo " [LD] $@"
|
||||
|
@ -408,7 +408,7 @@ btrfs-image.static: image/main.static.o $(static_objects) $(static_libbtrfs_obje
|
|||
|
||||
btrfs-convert: $(convert_objects) $(objects) $(libs_static)
|
||||
@echo " [LD] $@"
|
||||
$(Q)$(CC) $(CFLAGS) -I$(TOPDIR)/convert -o $@ $^ $(LDFLAGS) $(btrfs_convert_libs) $(LIBS)
|
||||
$(Q)$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(btrfs_convert_libs) $(LIBS)
|
||||
|
||||
btrfs-convert.static: $(static_convert_objects) $(static_objects) $(static_libbtrfs_objects)
|
||||
@echo " [LD] $@"
|
||||
|
|
Loading…
Reference in New Issue