[bug #46596] Timestamp check behaviour difference in clean build and rebuild on rules without recipes

2015-12-02 Thread Stefan Becker
URL: Summary: Timestamp check behaviour difference in clean build and rebuild on rules without recipes Project: make Submitted by: stefanb Submitted on: Thu 03 Dec 2015 07:58:39 AM GMT

[bug #46580] plugin: macro functions cannot be called with zero parameters

2015-12-02 Thread Brian Vandenberg
Follow-up Comment #2, bug #46580 (project make): $(lastword ${MAKEFILE_LIST)) doesn't give the current makefile, it gives the last file that was sourced. For example: ~ cat /tmp/makefile1 $(info $(lastword ${MAKEFILE_LIST})) include /tmp/makefile2 $(info $(lastword ${MAKEFILE_LIST})) ~ cat /tmp