zsh-workers
 help / color / mirror / code / Atom feed
From: zefram@fysh.org
To: "ZSH workers mailing list" <zsh-workers@sunsite.auc.dk>
Subject: PATCH: Re: Something weird with modules aliases
Date: Mon, 20 Dec 1999 13:37:54 GMT	[thread overview]
Message-ID: <199912201337.NAA17923@mango.dublin.iona.ie> (raw)

>compinit:475: failed to load module: complete
>compinit:zstyle:475: autoload failed
>compinit:476: command not found: zstyle

Slight module loading problem there.  Let me guess: you don't have any
alias modules being compiled.

Maybe this will help.

diff -crN ../zsh-/.distfiles ./.distfiles
*** ../zsh-/.distfiles	Thu Apr 15 19:05:35 1999
--- ./.distfiles	Mon Dec 20 13:10:06 1999
***************
*** 1,5 ****
  DISTFILES_SRC='
!     .cvsignore .distfiles Makefile.in
      ChangeLog ChangeLog.3.0 INSTALL META-FAQ README
      acconfig.h aclocal.m4 aczsh.m4 configure.in
      configure config.h.in stamp-h.in
--- 1,5 ----
  DISTFILES_SRC='
!     .cvsignore .distfiles .preconfig Makefile.in
      ChangeLog ChangeLog.3.0 INSTALL META-FAQ README
      acconfig.h aclocal.m4 aczsh.m4 configure.in
      configure config.h.in stamp-h.in
diff -crN ../zsh-/.preconfig ./.preconfig
*** ../zsh-/.preconfig	Thu Jan  1 01:00:00 1970
--- ./.preconfig	Mon Dec 20 13:22:03 1999
***************
*** 0 ****
--- 1,7 ----
+ #! /bin/sh
+ 
+ set -e
+ 
+ autoconf
+ autoheader
+ echo > stamp-h.in
diff -crN ../zsh-/INSTALL ./INSTALL
*** ../zsh-/INSTALL	Tue Nov 23 16:22:16 1999
--- ./INSTALL	Mon Dec 20 13:27:03 1999
***************
*** 19,24 ****
--- 19,34 ----
  for your particular architecture.  Most architectures will not require any
  special instructions.
  
+ Pre-configuration
+ -----------------
+ 
+ If you are using a normal source release, skip this section.
+ 
+ If the `configure' script does not already exist -- e.g., if you've got
+ a snapshot of the bare sources just checked out from a CVS repository
+ -- some things need to be built before the configuration can proceed.
+ Run the script `./Util/preconfig' to do this.
+ 
  Configuring Zsh
  ---------------
  
diff -crN ../zsh-/Util/.distfiles ./Util/.distfiles
*** ../zsh-/Util/.distfiles	Mon Aug 30 17:52:51 1999
--- ./Util/.distfiles	Mon Dec 20 13:22:59 1999
***************
*** 1,4 ****
--- 1,5 ----
  DISTFILES_SRC='
      .distfiles
      helpfiles mkdisttree.sh reporter
+     preconfig
  '
diff -crN ../zsh-/Util/preconfig ./Util/preconfig
*** ../zsh-/Util/preconfig	Thu Jan  1 01:00:00 1970
--- ./Util/preconfig	Mon Dec 20 13:21:44 1999
***************
*** 0 ****
--- 1,14 ----
+ #! /bin/sh
+ 
+ find . \( -name '*.*' -prune \) -o \( -name .preconfig -print \) | (
+     while read pre; do
+ 	cmd=`echo $pre | sed 's,^,cd ,;s,/\([^/]*\)$, \&\& ./\1,'`
+ 	echo >&2 "$cmd"
+ 	if ( eval "$cmd" ); then :; else
+ 	    echo "$0: $pre failed (status $?)"
+ 	    exit 1
+ 	fi
+     done
+ )
+ 
+ exit 0


             reply	other threads:[~1999-12-20 13:37 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-12-20 13:37 zefram [this message]
1999-12-23 13:17 ` Andrej Borsenkow
1999-12-23 13:29   ` Zefram
1999-12-23 14:02     ` Andrej Borsenkow
1999-12-23 14:20       ` Zefram
1999-12-23 15:04         ` PATCH: " Andrej Borsenkow

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=199912201337.NAA17923@mango.dublin.iona.ie \
    --to=zefram@fysh.org \
    --cc=zsh-workers@sunsite.auc.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).