btrfs-progs: fix parallel build
Parallel build may fail due to late creation of version.h, fix the rule name that does not match the filename. Signed-off-by: David Sterba <dsterba@suse.cz> Reviewed-by: Eri Sandeen <sandeen@redhat.com>
This commit is contained in:
parent
680a80ece1
commit
7aaf00fc2b
4
Makefile
4
Makefile
|
@ -52,9 +52,9 @@ endif
|
||||||
$(Q)$(CC) $(DEPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c $<
|
$(Q)$(CC) $(DEPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c $<
|
||||||
|
|
||||||
|
|
||||||
all: version $(progs) manpages
|
all: version.h $(progs) manpages
|
||||||
|
|
||||||
version:
|
version.h:
|
||||||
$(Q)bash version.sh
|
$(Q)bash version.sh
|
||||||
|
|
||||||
btrfs: $(objects) btrfs.o help.o $(cmds_objects)
|
btrfs: $(objects) btrfs.o help.o $(cmds_objects)
|
||||||
|
|
Loading…
Reference in New Issue