Skip to content

Commit c8138a5

Browse files
committed
kconfig: use $(PERL) in Makefile
The top Makefile defines and exports the variable 'PERL'. Use it in case somebody wants to specify a particular version of perl from the command line. Signed-off-by: Masahiro Yamada <[email protected]>
1 parent 1d13523 commit c8138a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/kconfig/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ build_gconfig: $(obj)/gconf
4747
build_xconfig: $(obj)/qconf
4848

4949
localyesconfig localmodconfig: $(obj)/conf
50-
$(Q)perl $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config
50+
$(Q)$(PERL) $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config
5151
$(Q)if [ -f .config ]; then \
5252
cmp -s .tmp.config .config || \
5353
(mv -f .config .config.old.1; \

0 commit comments

Comments
 (0)