diff options
author | Renato Botelho do Couto <renato@netgate.com> | 2024-06-05 18:11:46 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@0xa5.net> | 2024-06-10 13:13:31 +0000 |
commit | 893dacae3f93dcab24fdeb0c7e4a44d30b2db0ee (patch) | |
tree | 56d5bfe824098b8c729bebaf87cfef056c8b97f4 /build-root/Makefile | |
parent | fa500e98543989e4cdcbedac19a525d55a8558d5 (diff) |
build: Use $(MAKE) instead of direct call to make
No functional changes, just make it to respect original make binary
name used to start building
Type: improvement
Change-Id: Ic8568237fbb39c6a0d3b7405a9670e9410aeb752
Signed-off-by: Renato Botelho do Couto <renato@netgate.com>
Diffstat (limited to 'build-root/Makefile')
-rw-r--r-- | build-root/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-root/Makefile b/build-root/Makefile index d69a94c1e41..df4434d7629 100644 --- a/build-root/Makefile +++ b/build-root/Makefile @@ -997,7 +997,7 @@ $(PLATFORM_IMAGE_DIR)/ro.img ro-image: $(patsubst %,%-find-source,$(ROOT_PACKAGE | xargs sign $($(PLATFORM)_public_key) \ $($(PLATFORM)_private_key_passphrase) ; \ fi ; \ - : make read-only file system ; \ + : $(MAKE) read-only file system ; \ mksquashfs \ $${tmp_dir} $${ro_image} \ -no-exports -no-progress -no-recovery ; \ |