bug-make
[Top][All Lists]
Advanced

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

[bug #49841] flavor() function incorrectly shows function parameters as


From: anonymous
Subject: [bug #49841] flavor() function incorrectly shows function parameters as defined.
Date: Wed, 14 Dec 2016 15:33:08 +0000 (UTC)
User-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.75 Safari/537.36

URL:
  <http://savannah.gnu.org/bugs/?49841>

                 Summary: flavor() function incorrectly shows function
parameters as defined.
                 Project: make
            Submitted by: None
            Submitted on: Wed 14 Dec 2016 03:33:07 PM UTC
                Severity: 3 - Normal
              Item Group: Bug
                  Status: None
                 Privacy: Public
             Assigned to: None
             Open/Closed: Open
         Discussion Lock: Any
       Component Version: 4.2.1
        Operating System: POSIX-Based
           Fixed Release: None
           Triage Status: None

    _______________________________________________________

Details:

This concerns the scope of function parameters when using the
flavor() function to see if they are defined.

Consider the following functions and subsequent calls:

inner =\
  $(info 1F="$(flavor 1)" 1V="$(1)" 2F="$(flavor 2)" 2V="$(2)")
outer = $(call inner,one)

$(call outer,one)
$(call outer,one,two)

This will produce the following output with make-4.2.90

1F="simple" 1V="one" 2F="undefined" 2V=""
1F="simple" 1V="one" 2F="simple"    2V=""

It appears that the scope of the parameters in the outer function intrudes
into the inner function for the flavor() function but not for the value of the
parameter.





    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?49841>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

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