Page 2 of 2

Re: loudmouth, irssi-xmpp and root-tail

Posted: 29. Aug 2009, 07:34
by gapan
irssi-xmpp: You also need to do:

Code: Select all

sed "s/CFLAGS = \(.*\)/CFLAGS = $CFLAGS \1/" config.mk
to build with the right flags. If you look into your build log, you'll see that cc is run without any optimization flags (we want "-O2 -march=i486 -mtune=i686"). Sorry I missed it the first time around.

root-tail: The sed line should really be:

Code: Select all

sed -i "s/-O2/$CFLAGS/" Makefile
(capital "o" instead of zero and a dollar sign in front of CFLAGS ;))

Re: loudmouth, irssi-xmpp and root-tail

Posted: 29. Aug 2009, 09:17
by stillborn
gapan wrote: root-tail: The sed line should really be:

Code: Select all

sed -i "s/-O2/$CFLAGS/" Makefile
(capital "o" instead of zero and a dollar sign in front of CFLAGS ;))
hehe (I wrote it down already...on paper) :D

Packages re-done again, pkgrel still on 1 :lol:

Re: loudmouth, irssi-xmpp and root-tail

Posted: 30. Aug 2009, 10:04
by gapan
irssi-xmpp added to the repos, so all done for this thread. Thanks stillborn! ;)