/
niceSOFT
/
make
Обзор
Документация
Войти
/
niceSOFT
/
make
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.4.1
tests/scripts/options/dash-e
24 строки
604 B
Paul Smith
[SV 61218] Ensure MAKEFLAGS is expanded even with -e
09 янв 2023, 00:40
09 янв 2023, 00:40
a275f4e
Код
Авторство
О чём код?
# -*-perl-*- $description = "Test the -e (environment overrides) option"; $ENV{GOOGLE} = 'boggle'; run_make_test(q! GOOGLE = bazzle all:; @echo "$(GOOGLE)" !, '-e', "boggle\n"); # Ensure variables set on the command line have the origin correct # See SV 61218 run_make_test(q! $(info FOO [$(origin FOO)]: $(value FOO)) all: ; recurse: ; @$(MAKE) -f #MAKEFILE# !, '-e --no-print-directory FOO=1 recurse', "FOO [command line]: 1\nFOO [command line]: 1\n#MAKE#[1]: 'all' is up to date."); 1;