In the following example, why white spaces before  "pedagogi" are not
removed for var2?

var1=           
var2=$(var1)      pedagogi
var3=pedagogi
all: ;
$(warning var2=$(var2))
ifeq ($(var2),$(var3))
$(warning equal)
else
$(warning not equal)
endif

makefile27:5: var2=      pedagogi
makefile27:9: not equal
make: `all' is up to date.

_______________________________________________
Help-make mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/help-make

Reply via email to