zsh-workers
 help / color / mirror / code / Atom feed
* _make error
@ 2000-04-27 12:21 Andrej Borsenkow
  2000-04-27 12:29 ` PATCH: " Andrej Borsenkow
  0 siblings, 1 reply; 2+ messages in thread
From: Andrej Borsenkow @ 2000-04-27 12:21 UTC (permalink / raw)
  To: ZSH workers mailing list


In Zsh top level directory (gmake is GNU make)

sudo gmake install.moTAB 

resulted in (long long - already scrolled away)

........
.h~:
.h: commands:
 commands:
 commands:
 commands:

.l~:
.l:
.y~:
.y: commands:
 commands:

.u:
.o:
.SUFFIXES:make: No suffix list.

make: Fatal error: don't know how to make .PHONY (bu42).
dules 

-andrej

Have a nice DOS!
B >> 


^ permalink raw reply	[flat|nested] 2+ messages in thread

* PATCH: RE: _make error
  2000-04-27 12:21 _make error Andrej Borsenkow
@ 2000-04-27 12:29 ` Andrej Borsenkow
  0 siblings, 0 replies; 2+ messages in thread
From: Andrej Borsenkow @ 2000-04-27 12:29 UTC (permalink / raw)
  To: ZSH workers mailing list

[-- Attachment #1: Type: text/plain, Size: 313 bytes --]

>
> In Zsh top level directory (gmake is GNU make)
>
> sudo gmake install.moTAB
>
> resulted in (long long - already scrolled away)
>
> ........
>
> make: Fatal error: don't know how to make .PHONY (bu42).
> dules

It called ``make'' instead of $words[1]. Patch attached because of line
length as usual.

-andrej

[-- Attachment #2: _make.diff --]
[-- Type: application/octet-stream, Size: 546 bytes --]

--- Completion/User/_make.org	Thu Apr 27 16:27:05 2000
+++ Completion/User/_make	Thu Apr 27 16:26:41 2000
@@ -33,7 +33,7 @@
 
   if [[ -n "$file" ]] && _tags targets; then
     if [[ -n "$_is_gnu[$words[1]]" ]]; then
-      tmp=( $(make -nsp --no-print-directory -f "$file" .PHONY | awk '/^[a-zA-Z0-9][^\/\t=]+:/ {print $1}' FS=:) )
+      tmp=( $("$words[1]" -nsp --no-print-directory -f "$file" .PHONY | awk '/^[a-zA-Z0-9][^\/\t=]+:/ {print $1}' FS=:) )
     else
       tmp=(
             $(awk '/^[a-zA-Z0-9][^\/\t=]+:/ {print $1}

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2000-04-27 12:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-04-27 12:21 _make error Andrej Borsenkow
2000-04-27 12:29 ` PATCH: " Andrej Borsenkow

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).