Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
xargs environment is too large for exec
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Portage & Programming
View previous topic :: View next topic  
Author Message
col
l33t
l33t


Joined: 08 May 2002
Posts: 820
Location: Melbourne - Australia

PostPosted: Sun Jul 20, 2003 1:30 am    Post subject: xargs environment is too large for exec Reply with quote

trying to compile development source & I get this error. anyone know why ? other thing compile ok.
Code:

# make dep && make clean bzImage modules modules_install
*** Warning: make dep is unnecessary now.
make[1]: Nothing to be done for `arch/i386/Makefile'.
make[1]: Nothing to be done for `Makefile'.
  RM  $(CLEAN_FILES)
xargs: environment is too large for exec
make[1]: *** [clean] Error 1
make: *** [clean] Error 2


I tried this but it didnt fix my problem :


For the xargs error, have a look at https://forums.gentoo.org/viewtopic.php?t=62426&highlight=xargs
The short version is: modify your /etc/init.d/bootmisc file so that this line


Last edited by col on Sun Jul 20, 2003 8:08 am; edited 1 time in total
Back to top
View user's profile Send private message
Halanegri
Guru
Guru


Joined: 03 Mar 2003
Posts: 351
Location: Reykjavík, Iceland

PostPosted: Sun Jul 20, 2003 2:11 am    Post subject: Reply with quote

my kernel compiles correctly, but i always get that message at boot time(doesn't break anything though AFAIK)
Back to top
View user's profile Send private message
sa
Guru
Guru


Joined: 10 Jun 2002
Posts: 450

PostPosted: Sun Jul 20, 2003 2:32 am    Post subject: Reply with quote

your problem is that you dont need to do "make dep" anymore.
Back to top
View user's profile Send private message
col
l33t
l33t


Joined: 08 May 2002
Posts: 820
Location: Melbourne - Australia

PostPosted: Sun Jul 20, 2003 8:08 am    Post subject: Reply with quote

sa wrote:
your problem is that you dont need to do "make dep" anymore.


that is just a warning .... if I leave out make dep I get the same error.
Code:

# make clean bzImage modules modules_install
make[1]: Nothing to be done for `arch/i386/Makefile'.
make[1]: Nothing to be done for `Makefile'.
  RM  $(CLEAN_FILES)
xargs: environment is too large for exec
make[1]: *** [clean] Error 1
make: *** [clean] Error 2
Back to top
View user's profile Send private message
Souperman
Guru
Guru


Joined: 14 Jul 2003
Posts: 449
Location: Cape Town, South Africa

PostPosted: Sun Jul 20, 2003 2:44 pm    Post subject: Reply with quote

Halanegri wrote:
my kernel compiles correctly, but i always get that message at boot time(doesn't break anything though AFAIK)

I also get it at boot time but everything seems to be running OK. Does anyone know what causes it though?
Back to top
View user's profile Send private message
col
l33t
l33t


Joined: 08 May 2002
Posts: 820
Location: Melbourne - Australia

PostPosted: Sun Jul 20, 2003 11:21 pm    Post subject: Reply with quote

If you get it at boot time try this (this doesnt help me though):

Replace in your /etc/init.d/bootmisc

Code:

( find /var/lock -type f -print0 | xargs -0 rm -f -- 1>&2 )


by

Code:

( cd /var/lock && find . -type f -exec rm -f -- {} \; 1>&2 )
Back to top
View user's profile Send private message
col
l33t
l33t


Joined: 08 May 2002
Posts: 820
Location: Melbourne - Australia

PostPosted: Mon Jul 21, 2003 8:11 am    Post subject: Reply with quote

Ok I have narrowed this down to something to do with my kernel config. I boot up my old kernel and the error went away. Anyone know what it could be ?
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Portage & Programming All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum