bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug #65360] Extend -p output with export status of each variable.


From: Dmitry Goncharov
Subject: [bug #65360] Extend -p output with export status of each variable.
Date: Sat, 24 Feb 2024 09:46:53 -0500 (EST)

Follow-up Comment #1, bug#65360 (group make):

This patch has -p print export status, special and conditional flags of each
variable.


$ ls
makefile
$ cat makefile 
hello?=one
all:;
$ ~/src/gmake/make/l64/make -rp |grep  -B1 -w MAKEFLAGS
# makefile special export
MAKEFLAGS = pr


Here make prints that MAKEFLAGS is a special variable and it is exported.



$ ~/src/gmake/make/l64/make -rp |grep  -B1 hello
# makefile conditional do not export (from 'makefile', line 1)
hello = one


Here make prints that hello is conditional and is not exported.


    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?65360>

_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]