mirror of
https://git.openwrt.org/project/make_ext4fs.git
synced 2025-05-10 00:44:56 +00:00
make_ext4fs: add missing space after LDFLAGS
If LDFLAGS is non-empty then next standing "-o" flag may be mistakenly appended to it leading to build error. Fixes: 5c201be7d72a ("Add LDFLAGS when building libsparse.a") Signed-off-by: Konstantin Demin <rockdrilla@gmail.com> [ improve commit description ] Link: https://github.com/openwrt/make_ext4fs/pull/3 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
This commit is contained in:
parent
5c201be7d7
commit
13767a96fc
2
Makefile
2
Makefile
@ -27,7 +27,7 @@ OBJ := \
|
|||||||
$(CC) $(CFLAGS) -c -o $@ $^
|
$(CC) $(CFLAGS) -c -o $@ $^
|
||||||
|
|
||||||
make_ext4fs: $(OBJ) libsparse/libsparse.a
|
make_ext4fs: $(OBJ) libsparse/libsparse.a
|
||||||
$(CC) $(LDFLAGS)-o $@ $^ $(ZLIB)
|
$(CC) $(LDFLAGS) -o $@ $^ $(ZLIB)
|
||||||
|
|
||||||
libsparse/libsparse.a:
|
libsparse/libsparse.a:
|
||||||
$(MAKE) -C libsparse/ libsparse.a
|
$(MAKE) -C libsparse/ libsparse.a
|
||||||
|
Loading…
x
Reference in New Issue
Block a user