RE: File list hash not updated (FAT32 problem)

2002-01-30 Thread Paul D. Smith
solution as it will slow down your build by at least double and probably more. Better would be to go into the GNU make code and fix the W32 section so it uses the same hack as the DOS section to handle this. -- --- Paul D

Re: target-specific append variable malfunction.

2002-01-31 Thread Paul D. Smith
, -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: Reader error on use of ifeq conditional

2002-02-01 Thread Paul D. Smith
installed GNU make. So, they're finding Sun's make before GNU make. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake

Re: make (or bash?) bug

2002-02-08 Thread Paul D. Smith
, there is the [EMAIL PROTECTED] list. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may

Re: unexpected rm

2002-02-17 Thread Paul D. Smith
make manual. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am

Re: Make ends up deleting source files

2002-02-18 Thread Paul D. Smith
%.cc,%.o,$(filter %.cc,$(SRC))) But, you probably want this instead: OBJS = $(addsuffix .o,$(basename $(SRC))) HTH. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org

Re: a question to warnings from make

2002-02-21 Thread Paul D. Smith
to get a better synchronization than that. I suggest you investigate NTP or similar for your systems. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org

Re: make: expand.c:489: allocated_variable_append: Assertion failure

2002-02-21 Thread Paul D. Smith
, -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: (no subject)

2002-02-25 Thread Paul D. Smith
The first thing you should probably do is try the latest version of GNU make, 3.79.1. If that doesn't work, then try asking on the [EMAIL PROTECTED] mailing list for more Windows-specific help. -- --- Paul D. Smith

Re: Expansion of recursively expanded variables

2002-02-26 Thread Paul D. Smith
this? Why not just write them directly as shell commands in the command script? If they aren't $(shell ...) functions, then how can they interpret a file? Make has no builtin functions that read files, etc. -- --- Paul D. Smith

Re: Case problems and file permissions

2002-02-26 Thread Paul D. Smith
! -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: shell crash

2002-03-08 Thread Paul D. Smith
Sorry, I don't have any ideas. Try asking on the [EMAIL PROTECTED] list; they might have some thoughts. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org

Re: problem with parallel builds on AIX

2002-03-08 Thread Paul D. Smith
: http://savannah.gnu.org/projects/make/ -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may

Re: variables as dependencies expanded immediately

2002-03-18 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: ucanoscan makefile

2002-03-18 Thread Paul D. Smith
/include ucanoscan.c m make: gcc: Command not found So, your makefile wants to invoke GCC, but there is no GCC available on your system (or at least not on your PATH). How is this a make bug? -- --- Paul D. Smith

Re: $@ or $@F question

2002-03-20 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am a professional. --Mad Scientist ___ Bug-make mailing list

Re: target specific variable

2002-03-26 Thread Paul D. Smith
, -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am a professional. --Mad Scientist ___ Bug-make

Re: Optimization request

2002-04-05 Thread Paul D. Smith
on whitespace and executes dp the command itself. GNU make already does this... -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http

Re: bug when examining make file

2002-04-20 Thread Paul D. Smith
; -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am a professional. --Mad Scientist ___ Bug-make mailing

Re: make

2002-04-20 Thread Paul D. Smith
I think you're right; these variables should not be recursively expanded. I'll make this change. Thanks for the note. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org

Re: make doesn't handle += correctly for exported per-target variables

2002-04-25 Thread Paul D. Smith
, -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: some problems

2002-04-26 Thread Paul D. Smith
you're running on Solaris; in that case you need to add /usr/ccs/bin to your PATH; that's where ar lives on Solaris. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org

Re: Recursive $(call)

2002-04-27 Thread Paul D. Smith
, I'm going to leave it as just $(call ...) allowing this. Thanks. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake

Re: make doesn't handle += correctly for exported per-targetvariables

2002-04-28 Thread Paul D. Smith
OK, I examined this more closely and determined it is a real bug. I've fixed it and the fix will be included in the next release. Thanks for the report. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU

Re: Possible bug: Intermediate file deletion using pattern rules with multiple targets

2002-04-29 Thread Paul D. Smith
$*-nodelete.int $*-nodelete.int jb Thanks again, HTH! :) -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm

Re: Environment Variable Not passed to Make

2002-05-05 Thread Paul D. Smith
, the autoconf script that checks this is deficient :(. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please

Re: ezmlm compile error integrarting with mysql hheeelp

2002-05-24 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: I encounter a problem

2002-06-06 Thread Paul D. Smith
; . while2 Maybe the other shell you're seeing is doing something else, or from a previous invocation that's still running. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org

Re: make port for OS/2

2002-06-09 Thread Paul D. Smith
far, and which new files have you written so far?] -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please

Re: Make info bug: typo

2002-06-09 Thread Paul D. Smith
Thanks. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am

Re: Build of make 3.79 fails under HP-UX 11.11

2002-06-10 Thread Paul D. Smith
this problem. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am

Re: undesired action of pattern rules?

2002-06-13 Thread Paul D. Smith
). -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: gnu make seems to be dropping part of an LDADD variable ?

2002-06-14 Thread Paul D. Smith
The easy way to see what make thinks the value is, is to run make with the -p option. Not only will you see the internal value, but you'll see where make found that value (file name and line number). -- --- Paul D

Re: make error...can not create ar

2002-06-14 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am a professional. --Mad Scientist ___ Bug

Re: Too Long variable declaration

2002-06-16 Thread Paul D. Smith
; + backslash = !backslash; } if (!backslash) -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please

Re: GNU Make - automatic removing

2002-06-25 Thread Paul D. Smith
Check out the documentation surrounding intermediate files and their removal, the .PRECIOUS and .SECONDARY pseudo-targets, etc., in the GNU make manual. HTH! -- --- Paul D. Smith [EMAIL PROTECTED] Find some

Re: bug/feature regarding target filename resolution

2002-06-29 Thread Paul D. Smith
is a prerequisite, doesn't exist, and make can't find any way to create it, then you get a no rule to make target error. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org

Re: fork_copy error in Win98

2002-07-01 Thread Paul D. Smith
. If this is the version obtained from the FSF, then you might try asking on the [EMAIL PROTECTED] mailing list; people on that list are generally more knowledgeable about Windows issues. Good luck! -- --- Paul D. Smith [EMAIL PROTECTED

Re: Bug using computed variable names together with call

2002-07-02 Thread Paul D. Smith
for you: $($(shell echo $(1))) - $($(shell echo a)) - $(a) - b Change your call line like this: @echo $(call test1,a) and it will work. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips

Re: make aborts

2002-07-05 Thread Paul D. Smith
to find a way to include examples in your email verbatim, so they are not auto-wrapped like the above. It makes it _very_ difficult to read your makefiles when newlines are not maintained properly. Thanks. -- --- Paul D

Re: GNU make 3.80 rc1

2002-07-27 Thread Paul D. Smith
! -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://www.paulandlesley.org/gmake/ Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: Patch for 3.80rc1, [was: GNU make 3.80 rc1]

2002-07-29 Thread Paul D. Smith
%% Philip Guenther [EMAIL PROTECTED] writes: pg There are a few serious bugs in 3.80rc1 that I immediately ran pg into when testing Thanks. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips

Re: GNU make 3.80 rc1

2002-07-29 Thread Paul D. Smith
. are working properly on PTX. Thanks! -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am

Re: Windows 2000 problem

2002-07-30 Thread Paul D. Smith
) ). HTH! -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional

Re: \ at the end of a comment is not ignored.

2002-08-02 Thread Paul D. Smith
, Section make: 23527 Comments start with a number sign ('#') and continue until an unescaped newline is 23528 reached. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http

Re: 1.3.10-1 access violation error using --win32 with make 3.79.1-5

2002-08-20 Thread Paul D. Smith
to questions that deal specifically with the Cygwin port. Sorry about that! -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org

Re: Explicit, implicit rule chain doesn't work in created dirs

2002-08-27 Thread Paul D. Smith
I had added this to the docs, actually, but I don't see it now. Either I dreamed it or I added it somewhere else. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org

Re: Question

2002-08-29 Thread Paul D. Smith
absolutely nothing make can do about this. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may

Re: Makefile problems together with OSTYPE env variable

2002-09-02 Thread Paul D. Smith
using this kind of environment-specific value in your makefiles. Try this, for a more portable solution: OSTYPE := $(shell uname -msr) Or season the options to uname to taste. -- --- Paul D. Smith [EMAIL PROTECTED

Re: Makefile problems together with OSTYPE env variable

2002-09-02 Thread Paul D. Smith
by the Cygwin folks: it's not identical to what you get from the FSF. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please

Re: Built make-3.80rc1 on Cygwin - brief

2002-09-02 Thread Paul D. Smith
needed to apply so others can benefit from those changes. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm

Re: Line up info topdir entry

2002-09-02 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist ___ Bug-make mailing list [EMAIL

Re: dependency `' doesn't exist

2002-09-09 Thread Paul D. Smith
' \ | ghc-pkg $(GHC_PKG_FLAGS) -u Should be much faster. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm

Re: GNU Make version 3.79.1 bug

2002-09-09 Thread Paul D. Smith
This bug has been fixed in CVS. The fix will be available in the next release of GNU make. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http

Re: CVS psmith make: Whoops; configure wasn't looking for memmove.

2002-09-09 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist ___ Bug-make

Re: CVS psmith make: Whoops; configure wasn't looking for memmove.

2002-09-09 Thread Paul D. Smith
subdirectory. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional

Re: [Fwd: isatty function?]

2002-09-09 Thread Paul D. Smith
for testing this. Thanks for the request... -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may

Re: [Fwd: isatty function?]

2002-09-10 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: possible bug in 3.79.1 on irix6.5 ? works okay with IBM power4, same version of gmake

2002-09-13 Thread Paul D. Smith
the file as FOO.mod, the make rule will rename it to foo.mod. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain

Re: [Fwd: isatty function?]

2002-09-13 Thread Paul D. Smith
Embedding Perl is extremely unlikely. It's an almost 100% certainty that the embedded language will be Guile. This will work very nicely with existing GNU make syntax. -- --- Paul D. Smith [EMAIL PROTECTED

Re: problem with make 3.80-rc2 and linux kernel

2002-09-18 Thread Paul D. Smith
Whoops; I see it. Fixed. Thanks for the report. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm

Re: [Resend] Function or variable to get the name of the current makefile.

2002-09-19 Thread Paul D. Smith
' function that returns it. No need. There's already this capability (although not as a function and not exactly how you suggest) in the next version of GNU make. -- --- Paul D. Smith [EMAIL PROTECTED] Find some

Re: Phony Targets (documentation - small typo)

2002-09-23 Thread Paul D. Smith
This typo in the manual has been fixed in CVS for a while and will be in the next release. Thanks for the report. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org

Re: Too speedy problem

2002-09-24 Thread Paul D. Smith
, store the exact timestamp (and maybe other things) and rebuild if any of those changed. This would allow for much more accurate rebuild. But, that is not a small project. -- --- Paul D. Smith [EMAIL PROTECTED

Re: target fails to evaluate

2002-09-24 Thread Paul D. Smith
on Incompatibilities and Missing Features, for more information. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may

Re: Make 3.79.1 on OpenVMS

2002-09-24 Thread Paul D. Smith
! -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist ___ Bug

Re: Make 3.79.1 on OpenVMS

2002-09-27 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: Make 3.79.1 on OpenVMS

2002-09-27 Thread Paul D. Smith
%% [EMAIL PROTECTED] (Paul Jarc) writes: pj Paul D. Smith [EMAIL PROTECTED] wrote: Hm. However, I can't think of any way to write a configure test on whether or not time_t is signed or unsigned. pj if ((time_t)-1(time_t)0) signed(); else unsigned(); Not bad but this requires being

Re: Error report in make3.79 in Tornado 2.0.2.

2002-09-30 Thread Paul D. Smith
the next (and currently latest) version, 3.79.1, very quickly. Please get that current version and see if it still fails. If so, you'll have to provide a simple test case before we'll be able to help. -- --- Paul D. Smith

Re: (no subject)

2002-10-04 Thread Paul D. Smith
compiler). -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad

Re: [PATCH] fix for gl.po file when building from CVS

2002-10-04 Thread Paul D. Smith
... -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: make: node automatic variables in manual has wrong name

2002-10-04 Thread Paul D. Smith
. Thx. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad

Re: (no subject)

2002-10-06 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: make-3.8

2002-10-08 Thread Paul D. Smith
to the [EMAIL PROTECTED] mailing list. If they don't know where it goes, at least a large number of the people using alloca.c probably read that list. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips

Re: make-3.8

2002-10-08 Thread Paul D. Smith
site and many packages download new versions as part of their package release process. Any updates to those should be sent to [EMAIL PROTECTED] (see the comments at the top of these files for more info). -- --- Paul D

Re: Changing resolution of $^ in make

2002-10-08 Thread Paul D. Smith
by make but which exist a priori). See my web site below for a longer description of how VPATH/vpath works. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org

Re: PATCH: stack overflow on large dependency set

2002-10-09 Thread Paul D. Smith
. GNU make, like all GNU tools, aims to be limited only by system capabilities and not impose any internal size restrictions. Thanks. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http

Re: diffutils 2.8.4 bug when make -j is used

2002-10-13 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist ___ Bug-make mailing

Re: diffutils 2.8.4 bug when make -j is used

2002-10-14 Thread Paul D. Smith
)') $@ -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: Target-specific +=

2002-10-14 Thread Paul D. Smith
! -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist ___ Bug-make mailing list [EMAIL

Re: Make feature rq: Non-pattern rules with multi-target commands

2002-10-20 Thread Paul D. Smith
a special delimiter: target1 target2 +: prerequisites command or |: or something like that. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org

Re: make-3.80: `eval' bug

2002-10-24 Thread Paul D. Smith
; } -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: make-3.80: `eval' bug

2002-10-24 Thread Paul D. Smith
... -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: make-3.80: `eval' bug

2002-10-24 Thread Paul D. Smith
:). -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: $@ documentation

2002-10-12 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: make-3.80: `eval' bug

2002-10-30 Thread Paul D. Smith
%% Henning Makholm [EMAIL PROTECTED] writes: Just FYI, I think those -t problems have been around for a long time; IIRC I looked as far back as 3.74 and they were there. So just checking against 3.79% and failing is not going to help... hm Scripsit Paul D. Smith [EMAIL PROTECTED

Re: make 3.80: -B option is not documented in man and info pages

2002-11-02 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist ___ Bug-make mailing list [EMAIL

Re: Target specific += has strange behaviour

2002-11-03 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: Make 3.80 on Tru64 UNIX 4.0D

2002-11-12 Thread Paul D. Smith
-- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist

Re: make segmentation fault

2002-11-13 Thread Paul D. Smith
This bug is fixed in the latest version, GNU make 3.80. Please try that and let us know if it doesn't work. Thanks for the report! -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http

Re: A possible bug (or a feature) : dependencies shown in dry-run but not rebuilt

2002-11-13 Thread Paul D. Smith
a look. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional

RE: A possible bug (or a feature) : dependencies shown in dry-run but not rebuilt

2002-11-13 Thread Paul D. Smith
(note you must remove the trailing semicolon as well!) -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm

Re: EINTR causing useless recompilation?

2002-11-14 Thread Paul D. Smith
. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm...I may be mad, but I am a professional. --Mad Scientist ___ Bug-make mailing list [EMAIL

Re: EINTR causing useless recompilation?

2002-11-14 Thread Paul D. Smith
tried it on x86. 3) Something we haven't thought of. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain calm

Re: Exception

2002-11-19 Thread Paul D. Smith
You might have better luck asking on the [EMAIL PROTECTED] mailing list; they're more familiar with Windows-specific issues. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http

Re: errors when installed gnumake v3.80 on Win2000

2002-11-19 Thread Paul D. Smith
Please see the patch attached as a solution to this bug report: http://savannah.gnu.org/bugs/?func=detailbugbug_id=1687group_id=71 -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http

Re: make-3.80, and prior using MS Windows 2000 Server SP2

2002-11-19 Thread Paul D. Smith
Please try the patch attached as a solution to this bug report: http://savannah.gnu.org/bugs/?func=detailbugbug_id=1687group_id=71 -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http

Re: include file error

2002-11-20 Thread Paul D. Smith
... it's possible people are using this capability in areas like: include $(wildcard *.mk) If -include allows it to succeed that might be good enough. I'll think about this. -- --- Paul D. Smith [EMAIL PROTECTED

Re: make -j with recursive make problems

2002-11-24 Thread Paul D. Smith
Please try it with GNU make 3.80. If it only happens occasionally it might be a manifestation of a bug that was fixed in 3.80. -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http

Re: problem resp. bug with target sepcific variable values

2002-11-29 Thread Paul D. Smith
Please try with the latest version of GNU make (3.80). -- --- Paul D. Smith [EMAIL PROTECTED] Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org Please remain

<    1   2   3   4   5   6   7   8   9   10   >