From subsecret
(→attr) |
|||
Line 20: | Line 20: | ||
==coreutils== | ==coreutils== | ||
tar xf coreutils-8. | tar xf coreutils-8.21.tar.xz | ||
cd coreutils-8. | cd coreutils-8.21 | ||
./configure -- | ./configure --with-gmp=/tools --without-selinux --prefix=/tools/ | ||
make -j | make -j 8 | ||
make install | make install | ||
cd .. | cd .. | ||
We are now ready for next step | We are now ready for next step |
Latest revision as of 14:57, 21 April 2013
attr
Extract tar.gz and patches from source RPM
tar xf attr-2.4.46.src.tar.gz cd attr-2.4.46/ ./configure --prefix=/tools make -j 8
Since "make install" is broken, we manually copy files
cd libattr cd .libs cp *.la /tools/lib/ cp *.so* /tools/lib/ cd .. cd .. cd include mkdir /tools/include/attr cp attributes.h error_context.h libattr.h xattr.h /tools/include/attr cd .. cd ..
coreutils
tar xf coreutils-8.21.tar.xz cd coreutils-8.21 ./configure --with-gmp=/tools --without-selinux --prefix=/tools/ make -j 8 make install cd ..
We are now ready for next step