Hello
I find out that some of my setting in .tcshrc disturb
In some logs I created with:
I see that in a very long command line of
Without a ~/.tcshrc file the
I have tested some settings in
Some settings in ~/.tcshrc I tested without any error; but these are at most alias and language settings.
This are the rest of settings in my ~/.tcshrc I graped form a book or form some tips elsewhere.
Have anyone a idea what setting is there possibly wrong so
Thanks
I find out that some of my setting in .tcshrc disturb
make buildworld
so its crashed with an unspecific error message.In some logs I created with:
date > _done.log
make buildworld > buildworld.log && echo "done" >> _done.log && date >> _done.log &
I see that in a very long command line of
ar -crD libc_pic.a ................
are mixed parts of other commands. This has happens minimum in twice builds and I count, that 14 times the command line of "ar" was cut with some other strings.Without a ~/.tcshrc file the
make buildworld
ends without any error.I have tested some settings in
~/.tcshrc
and the result was fine, but I cannot do this for every line because every build takes approximately 4 hours.Some settings in ~/.tcshrc I tested without any error; but these are at most alias and language settings.
This are the rest of settings in my ~/.tcshrc I graped form a book or form some tips elsewhere.
Have anyone a idea what setting is there possibly wrong so
make buildworld
can not build?
Code:
set autolist # ..
set filec # ..
set autoexpand # ..
set addsuffix # ..
set EDITOR ee
set PAGER most
set BLOCKSIZE K
set history = 300
set histfile = "$HOME/.history"
set savehist = ( 1000 merge )
alias h 'history 300'
alias hr 'history -r 300' #recursive
set LSCOLORS = "Exfxcxdxbxegedabagacad"
# Color settings for the GNU ls command
#------------------------------------------
# Black 00;30 Dark Gray 01;30
# Blue 00;34 Light Blue 01;34
# Green 00;32 Light Green 01;32
# Cyan 00;36 Light Cyan 01;36
# Red 00;31 Light Red 01;31
# Purple 00;35 Light Purple 01;35
# Brown 00;33 Yellow 01;33
# Light Gray 00;37 White 01;37
#------------------------------------------
setenv LS_COLORS 'no=00:fi=00:di=01;34:ln=01;35:pi=01;34:so=01;34:bd=01;34:cd=01;34:or=01;35:mi=01;35:ex=01;32:*.tar=01;31:*.gz=01;31:*.tgz=01;31:*.arj=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.bz2=01;31:*.rpm=01;31:*.sit=01;31:*.sitx=01;31:*.jar=01;31:*.sea=01;31:*.rar=01;31:*.zoo=01;31:*.uu=01;31:*.uue=01;31:*.yenc=01;31:*.hqx=01;31:*.lha=01;31:*.cab=01;31:*.7z=01;31:*.arc=01;31:*.jpg=01;33:*.jpeg=01;33:*.png=01;33:*.gif=01;33:*.bmp=01;33:*.tif=01;33:*.tiff=01;33:*.psd=01;33:*.pdd=01;33:*.eps=01;33:*.tga=01;33:*.pgm=01;33:*.psp=01;33:*.pic=01;33:*.ps2=01;33:*.dcs=01;33:*.iff=01;33:*.pct=01;33:*.pcx=01;33:*.pxr=01;33:*.sct=01;33:*.stn=01;33:*.xbm=01;33:*.xpm=01;33:*.mpg=01;35:*.mpeg=01;35:*.mp2=01;35:*.avi=01;35:*.mov=01;35:*.qt=01;35:*.divx=01;35:*.asf=01;35:*.wmv=01;35:*.wm=01;35:*.wma=01;35:*.cda=01;35:*.ogg=01;35:*.mp3=01;35:*.m4a=01;35:*.m4p=01;35:*.mp4=01;35:*.wav=01;35:*.au=01;35:*.mid=01;35:*.midi=01;35:*.aif=01;35:*.aiff=01;35:*.ra=01;35:*.ram=01;35:*.rm=01;35:*.rv=01;35:*.aac=01;35:*.rmi=01;35'
#setenv PATH ".:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin:${PATH}:${HOME}/bin"
# Problem wiht rkhunter wehn ".:/" in PATH -> ok then without ".:/"
setenv PATH "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin:${PATH}:${HOME}/bin"
setenv LD_LIBRARY_PATH ".:/usr/local/lib:/usr/local/info/lib:/usr/lib:/lib:/usr/local/X11/lib:/"
#for sysutils/tmux (tmux is a terminal multiplexer)
setenv TMUX_TMPDIR /var/run/tmux/
setenv MAKEOBJDIRPREFIX /usr/obj
# A righteous umask
umask 22
#-------------------------------------------------------------------------------
cd ~ #change to home directory
Last edited by a moderator: