[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: All elisp package should be redirect Compilation Log to a file.



Interesting idea (I like it), but bad implementation (not that I
have the time to try to fix it).

Peter

Takuo KITAME wrote:

> Hello.
> 
> Some elisp package will byte-compile at installing.
> But stdouts of byte-compiling are very noisy and noisy.
> I think that should be redirect to a CompilationLog file. (and gzip
> this.)
> 
> A patch for debian/emacsen-install.ex 
> --- emacsen-install.ex  Tue Oct 26 13:14:44 1999
> +++ emacsen-install.ex.new      Tue Oct 26 13:17:36 1999
> @@ -39,7 +39,8 @@
>  cat << EOF > path.el
>  (setq load-path (cons "." load-path) byte-compile-warnings nil)
>  EOF
> -${FLAVOR} ${FLAGS} ${FILES}
> +rm -f CompilationLog.gz
> +${FLAVOR} ${FLAGS} ${FILES}  2>&1 | gzip -9qf > CompilationLog.gz
>  rm -f *.el path.el
> 
> Any comments?


Reply to: