LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux From Scratch
User Name
Password
Linux From Scratch This Forum is for the discussion of LFS.
LFS is a project that provides you with the steps necessary to build your own custom Linux system.

Notices


Reply
  Search this Thread
Old 06-14-2005, 11:45 PM   #1
ukyo
Member
 
Registered: Sep 2004
Location: JiangsuChina
Distribution: LOVEHuiKai
Posts: 38

Rep: Reputation: 15
Question 6.13. Binutils-2.15.91.0.2


Linux From Scratch - Version 6.0
Chapter 6. Installing Basic System Software

6.13. Binutils-2.15.91.0.2
-------------------------------------
Install the package:

make tooldir=/usr install

-----------------------------------
root:/sources/binutils-build# make tooldir=/usr install /bin/sh ../binutils-2.15.91.0.2/mkinstalldirs /usr /usr
make[1]: Entering directory `/sources/binutils-build/bfd'
Making install in doc
make[2]: Entering directory `/sources/binutils-build/bfd/doc'
make[3]: Entering directory `/sources/binutils-build/bfd/doc'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/sources/binutils-build/bfd/doc'
/bin/sh ../../../binutils-2.15.91.0.2/bfd/../mkinstalldirs /usr/info
/usr/bin/install -c -m 644 ./bfd.info /usr/info/bfd.info
/bin/sh: /usr/bin/install: No such file or directory
install-info --info-dir=/usr/info /usr/info/bfd.info
install-info: No such file or directory for /usr/info/bfd.info
make[2]: Leaving directory `/sources/binutils-build/bfd/doc'
Making install in po
make[2]: Entering directory `/sources/binutils-build/bfd/po'
if test -r ../../../binutils-2.15.91.0.2/bfd/po/../../mkinstalldirs; then \
../../../binutils-2.15.91.0.2/bfd/po/../../mkinstalldirs /usr/share; \
else \
../../../binutils-2.15.91.0.2/bfd/mkinstalldirs /usr/share; \
fi
/bin/sh: /usr/bin/install: No such file or directory
installing ../../../binutils-2.15.91.0.2/bfd/po/fr.gmo as /usr/share/locale/fr/LC_MESSAGES/bfd.mo
/bin/sh: /usr/bin/install: No such file or directory
installing ../../../binutils-2.15.91.0.2/bfd/po/tr.gmo as /usr/share/locale/tr/LC_MESSAGES/bfd.mo
/bin/sh: /usr/bin/install: No such file or directory
installing ../../../binutils-2.15.91.0.2/bfd/po/ja.gmo as /usr/share/locale/ja/LC_MESSAGES/bfd.mo
/bin/sh: /usr/bin/install: No such file or directory
installing ../../../binutils-2.15.91.0.2/bfd/po/es.gmo as /usr/share/locale/es/LC_MESSAGES/bfd.mo
/bin/sh: /usr/bin/install: No such file or directory
installing ../../../binutils-2.15.91.0.2/bfd/po/sv.gmo as /usr/share/locale/sv/LC_MESSAGES/bfd.mo
/bin/sh: /usr/bin/install: No such file or directory
installing ../../../binutils-2.15.91.0.2/bfd/po/da.gmo as /usr/share/locale/da/LC_MESSAGES/bfd.mo
/bin/sh: /usr/bin/install: No such file or directory
installing ../../../binutils-2.15.91.0.2/bfd/po/zh_CN.gmo as /usr/share/locale/zh_CN/LC_MESSAGES/bfd.mo
/bin/sh: /usr/bin/install: No such file or directory
installing ../../../binutils-2.15.91.0.2/bfd/po/ro.gmo as /usr/share/locale/ro/LC_MESSAGES/bfd.mo
if test "bfd" = "gettext"; then \
if test -r ../../../binutils-2.15.91.0.2/bfd/po/../../mkinstalldirs; then \
../../../binutils-2.15.91.0.2/bfd/po/../../mkinstalldirs /usr/share/gettext/po; \
else \
../../../binutils-2.15.91.0.2/bfd/mkinstalldirs /usr/share/gettext/po; \
fi; \
/usr/bin/install -c -m 644 ../../../binutils-2.15.91.0.2/bfd/po/Makefile.in.in \
/usr/share/gettext/po/Makefile.in.in; \
else \
: ; \
fi
make[2]: Leaving directory `/sources/binutils-build/bfd/po'
make[2]: Entering directory `/sources/binutils-build/bfd'
make[3]: Entering directory `/sources/binutils-build/bfd'
make[3]: Nothing to be done for `install-exec-am'.
/bin/sh ../../binutils-2.15.91.0.2/bfd/../mkinstalldirs /usr/lib
/bin/sh ../../binutils-2.15.91.0.2/bfd/../mkinstalldirs /usr/include
/bin/sh ./libtool --mode=install /usr/bin/install -c libbfd.la /usr/lib/libbfd.la
/usr/bin/install -c .libs/libbfd.lai /usr/lib/libbfd.la
./libtool: line 4994: /usr/bin/install: No such file or directory
make[3]: *** [install_libbfd] Error 127
make[3]: Leaving directory `/sources/binutils-build/bfd'
make[2]: *** [install-am] Error 2
make[2]: Leaving directory `/sources/binutils-build/bfd'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/sources/binutils-build/bfd'
make: *** [install-bfd] Error 2
---------------------------------------

What s up??
 
Old 06-15-2005, 02:05 AM   #2
kjordan
Member
 
Registered: Jul 2004
Distribution: LFS, I felt the itch and scratched it
Posts: 227

Rep: Reputation: 31
Post your $PATH. It should be using the install in /tools/bin/install I believe since Coreutils hasn't been installed in Chapter 6 yet.
 
Old 06-15-2005, 02:26 AM   #3
freegianghu
Member
 
Registered: Oct 2004
Location: somewhere in the street
Distribution: Window$
Posts: 192

Rep: Reputation: 30
Just simple: create a symlink before make install.
Code:
ln -s /tools/bin/install /usr/bin/install
 
Old 06-15-2005, 12:15 PM   #4
kjordan
Member
 
Registered: Jul 2004
Distribution: LFS, I felt the itch and scratched it
Posts: 227

Rep: Reputation: 31
Quote:
Originally posted by freegianghu
Just simple: create a symlink before make install.
Code:
ln -s /tools/bin/install /usr/bin/install
I don't remember having to do that, but that should work as well.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
binutils ? siggns Ubuntu 1 10-29-2005 06:11 PM
Installation of binutils....can't mkdir...../binutils-build hmonster Linux From Scratch 6 08-22-2004 04:07 AM
Binutils Help, what else do i do? kkj Linux - Newbie 4 04-05-2004 11:33 PM
binutils seeone Linux - Software 2 01-07-2004 01:31 PM
binutils and ld Sublimehype Linux - Software 1 12-19-2003 01:37 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux From Scratch

All times are GMT -5. The time now is 05:16 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration