zsh-users
 help / color / mirror / code / Atom feed
* redhat 8 and gnome-terminal problem
@ 2003-02-25 21:49 Dennis Haney
  2003-02-26  2:17 ` Build problems, solution? Charlie Reiman
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Dennis Haney @ 2003-02-25 21:49 UTC (permalink / raw)
  To: zsh-users


Has anyone else had problems with redhat 8 and gnome-terminal where
the list of completions (after two presses on tab) are never shown?

I tried cutting my setup down to:

autoload -U compinit
zstyle ':completion:*' completer _complete
setopt NO_AUTO_MENU BASH_AUTO_LIST NO_LIST_AMBIGUOUS
setopt LIST_BEEP LIST_TYPES NO_REC_EXACT

but it still happens.

The wierd thing is that it seems that the text is written to screen
(ie newlines because of the output is generated), but no text is
visible. Also if I switch to console mode, there are no problems.

I also tried switching between LANG=da_DK.UTF-8 and LANG=da_DK (which
defaults to ISO8859-1), no luck.

-- 
Dennis
use Inline C => qq{void p(char*g){
printf("Just Another %s Hacker\n",g);}};p("Perl");


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

* Build problems, solution?
  2003-02-25 21:49 redhat 8 and gnome-terminal problem Dennis Haney
@ 2003-02-26  2:17 ` Charlie Reiman
  2003-02-26  7:41   ` Borzenkov Andrey
  2003-02-26  3:03 ` redhat 8 and gnome-terminal problem Doug Kearns
  2003-02-28 11:15 ` Dennis Haney
  2 siblings, 1 reply; 6+ messages in thread
From: Charlie Reiman @ 2003-02-26  2:17 UTC (permalink / raw)
  To: zsh-users

I was trying to build zsh-4.0.6 on Solaris 8 on Intel. configure seems to
work fine but make spits this out:

sh: Src: does not exist
*** Error code 1
make: Fatal error: Command failed for target `all'

I've tracked it down to this section in the Makefile:

# default target
all: config.h
        @for subdir in Src Doc; do \
          (cd $$subdir && $(MAKE) $(MAKEDEFS) $@) || exit 1; \
        done

Obviously, my /bin/sh is borked. Since I have bash installed, I came up with
a workaround (I'd love to here of a better one!)

edit the "SHELL = /bin/sh" line in Config/defs.mk to
SHELL = /usr/bin/bash

Go to the toplevel and run "make SHELL=/usr/bin/bash"

Incidentally, the line that breaks can be fixed by doing this:

          (cd ./$$subdir && $(MAKE) $(MAKEDEFS) $@) || exit 1; \

But you'd need to do that for every cd in every makefile.




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

* Re: redhat 8 and gnome-terminal problem
  2003-02-25 21:49 redhat 8 and gnome-terminal problem Dennis Haney
  2003-02-26  2:17 ` Build problems, solution? Charlie Reiman
@ 2003-02-26  3:03 ` Doug Kearns
  2003-02-28 11:15 ` Dennis Haney
  2 siblings, 0 replies; 6+ messages in thread
From: Doug Kearns @ 2003-02-26  3:03 UTC (permalink / raw)
  To: zsh-users

On Tue, Feb 25, 2003 at 10:49:06PM +0100, Dennis Haney wrote:
> 
> Has anyone else had problems with redhat 8 and gnome-terminal where
> the list of completions (after two presses on tab) are never shown?

Yes, but I don't use gnome-terminal so I didn't pursue it.

<snip>

Regards,
Doug


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

* RE: Build problems, solution?
  2003-02-26  2:17 ` Build problems, solution? Charlie Reiman
@ 2003-02-26  7:41   ` Borzenkov Andrey
  2003-02-26 19:13     ` Charlie Reiman
  0 siblings, 1 reply; 6+ messages in thread
From: Borzenkov Andrey @ 2003-02-26  7:41 UTC (permalink / raw)
  To: 'Charlie Reiman', zsh-users


> I was trying to build zsh-4.0.6 on Solaris 8 on Intel. configure seems to
> work fine but make spits this out:
> 
> sh: Src: does not exist
> *** Error code 1
> make: Fatal error: Command failed for target `all'
> 
[...]
> Incidentally, the line that breaks can be fixed by doing this:
> 
>           (cd ./$$subdir && $(MAKE) $(MAKEDEFS) $@) || exit 1; \
> 
> But you'd need to do that for every cd in every makefile.
> 

Which smells like CDPATH problem (i.e. when . is not in CDPATH). May be
another solution would be to globally unset CDPATH or set it to ".", but I
am not sure if it possible to export environment out of makefile portably.

-andrey


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

* RE: Build problems, solution?
  2003-02-26  7:41   ` Borzenkov Andrey
@ 2003-02-26 19:13     ` Charlie Reiman
  0 siblings, 0 replies; 6+ messages in thread
From: Charlie Reiman @ 2003-02-26 19:13 UTC (permalink / raw)
  To: zsh-users



> -----Original Message-----
> From: Borzenkov Andrey [mailto:Andrey.Borzenkov@siemens.com]
> Sent: Tuesday, February 25, 2003 11:41 PM
> To: 'Charlie Reiman'; zsh-users@sunsite.dk
> Subject: RE: Build problems, solution?
>
>
>
> > I was trying to build zsh-4.0.6 on Solaris 8 on Intel.
> configure seems to
> > work fine but make spits this out:
> >
> > sh: Src: does not exist
> > *** Error code 1
> > make: Fatal error: Command failed for target `all'
> >
> [...]
> > Incidentally, the line that breaks can be fixed by doing this:
> >
> >           (cd ./$$subdir && $(MAKE) $(MAKEDEFS) $@) || exit 1; \
> >
> > But you'd need to do that for every cd in every makefile.
> >
>
> Which smells like CDPATH problem (i.e. when . is not in CDPATH). May be
> another solution would be to globally unset CDPATH or set it to ".", but I
> am not sure if it possible to export environment out of makefile portably.

Ah. That was probably it. I knew there was a reason I never set CDPATH in
the past. Looks like I'll be taking that out of my zshenv.

Maybe configure should warn if CDPATH is set and does not contain a '.'?



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

* Re: redhat 8 and gnome-terminal problem
  2003-02-25 21:49 redhat 8 and gnome-terminal problem Dennis Haney
  2003-02-26  2:17 ` Build problems, solution? Charlie Reiman
  2003-02-26  3:03 ` redhat 8 and gnome-terminal problem Doug Kearns
@ 2003-02-28 11:15 ` Dennis Haney
  2 siblings, 0 replies; 6+ messages in thread
From: Dennis Haney @ 2003-02-28 11:15 UTC (permalink / raw)
  To: zsh-users

>>>>> "Dennis" == Dennis Haney <davh@davh.dk> writes:

Dennis> Has anyone else had problems with redhat 8 and gnome-terminal
Dennis> where the list of completions (after two presses on tab) are
Dennis> never shown?

Never mind. I switched back to debian...


-- 
Dennis
use Inline C => qq{void p(char*g){
printf("Just Another %s Hacker\n",g);}};p("Perl");


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

end of thread, other threads:[~2003-02-28 11:16 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-02-25 21:49 redhat 8 and gnome-terminal problem Dennis Haney
2003-02-26  2:17 ` Build problems, solution? Charlie Reiman
2003-02-26  7:41   ` Borzenkov Andrey
2003-02-26 19:13     ` Charlie Reiman
2003-02-26  3:03 ` redhat 8 and gnome-terminal problem Doug Kearns
2003-02-28 11:15 ` Dennis Haney

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).