2009-01-13 06:00:08 make on Fedora 4; 64bit error
Nikolay Chokoev (IRELAND)
Message: 67860
Hi,
I'm trying to build the ucLinux on Fedora 4 with 64bit CPU.
the error I've:
make[3]: Entering directory `/usr/dlnx764/svn/uclinux-dist/lib/qt-embedded'
tar xf /usr/dlnx764/svn/uclinux-dist/download/qt-embedded-linux-opensource-src-4.4.3.tar.gz
tar: This does not look like a tar archive
tar: Skipping to next header
tar: Archive contains obsolescent base-64 headers
tar: Error exit delayed from previous errors
make[3]: *** [qt-embedded-linux-opensource-src-4.4.3/.unpacked] Error 2
make[3]: Leaving directory `/usr/dlnx764/svn/uclinux-dist/lib/qt-embedded'
make[2]: *** [qt-embedded] Error 2
make[2]: Leaving directory `/usr/dlnx764/svn/uclinux-dist/lib'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/usr/dlnx764/svn/uclinux-dist/lib'
make: *** [subdirs] Error 1
[root@dlnx764 uclinux-dist]#
In order to continue I've changed "tools/download.mk" line " tar xf $< " to "tar xvzf $< ".
QuoteReplyEditDelete
2009-01-13 06:28:41 Re: make on Fedora 4; 64bit error
Mike Frysinger (UNITED STATES)
Message: 67864
yes, you have an older version of tar which does not correctly guess the decompressor. adding the z flag is the correct fix for you. i'll fix it up in svn.
QuoteReplyEditDelete
2009-01-13 07:03:42 Re: make on Fedora 4; 64bit error
Nikolay Chokoev (IRELAND)
Message: 67868
thanks..