diff options
| author | Konstantin Demin | 2025-05-01 18:39:41 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-05-01 21:54:01 +0000 |
| commit | 13767a96fcdffd59fef16f1b86919f63b6dee45a (patch) | |
| tree | e0e7259c2f4ee55bb32ca32a5b69486956b57950 | |
| parent | 5c201be7d72aff735da27e17c29852e0cefe3e52 (diff) | |
| download | make_ext4fs-master.tar.gz | |
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>
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ OBJ := \ $(CC) $(CFLAGS) -c -o $@ $^ make_ext4fs: $(OBJ) libsparse/libsparse.a - $(CC) $(LDFLAGS)-o $@ $^ $(ZLIB) + $(CC) $(LDFLAGS) -o $@ $^ $(ZLIB) libsparse/libsparse.a: $(MAKE) -C libsparse/ libsparse.a |