Page 1 of 1

Lucid Puppy 5.0

Posted: Sun 16 May 2010, 12:16
by Minomushi
I used Lucid Puppy 5.0(lupu-500),
and customized for japanese language.

I was build imlib2-1.4.4

# tar jxvf imlib2-1.4.4.tar.bz2
...
# cd imlib2-1.4.4
# ./configure --prefix=/usr
...
# make
...
make[1]: Leaving directory `/work/imlib2-1.4.4'
# LANG=C new2dir make install
...
This program built for i486-pc-linux-gnu
...
make: *** [install-recursive] Error 1
...
# set|grep MACHTYPE
MACHTYPE=i486-t2-linux-gnu
# cd /usr/lib/gcc
# ls -l
total 0
drwxr-xr-x 4 root root 26 2010-04-18 22:26 i486-linux-gnu[/code]

i486-linux-gnu <- Is this correct?

Posted: Sun 16 May 2010, 12:41
by 01micko
Hello Minomushi

Welcome to the kennels :)

On some occasions 'new2dir' can fail. In that instance I use 'make install DESTDIR=/$dir' and strip manually.

I hope this helps.

Cheers

Re: Lucid Puppy 5.0

Posted: Sun 16 May 2010, 16:05
by Minomushi
01micko wrote:Hello Minomushi

Welcome to the kennels Smile

On some occasions 'new2dir' can fail. In that instance I use 'make install DESTDIR=/$dir' and strip manually.

I hope this helps.

Cheers
Thank you, 01micko.

It solved it when executing it as shown by 01micko.