In the NEWS file for make-3.82 is this info about the wildcard function
* WARNING: Future backward-incompatibility!
Wildcards are not documented as returning sorted values, but up to and
including this release the results have been sorted and some makefiles are
apparently depending on that
I notice that $(dir ...) leaves the trailing / when given a full
filename path.
Is there an easy way to remove the trailing / ?
It would nice to have a function that didn't leave it there in some
applications we have.
I tried to do this so I could get the root dir of a program, but it
fails t
I am not sure if this is a bug report or an enhancement request.
If I do the following Makefile
#
export TESTVAR := TEST
$(shell xterm )
xterm:
xterm
##
I have a make file that is causing me a problem when I try to use the -j
option to speed things up.
Here is a simplified version of it that shows my problem.
### Makefile
all:a b c d e
touch all
a b c d e:
script.5files
I sent in a bug report the other day and got this as a response.
> From make's NEWS file for the 3.81 release:
>
> * WARNING: Backward-incompatibility!
>
> In order to comply with POSIX, the way in which GNU make processes
> backslash-newline sequences in recipes has changed. If your makef
I'll check it out. Thanks
___
Bug-make mailing list
Bug-make@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-make
I have this "Makefile.bug" and an empty file "yyy" which makes no logical sense
as I stripped my
original problem down to this.
-
touch yyy
-
M