LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 12-06-2014, 09:11 AM   #1
hamsaeed
Member
 
Registered: Dec 2014
Posts: 47

Rep: Reputation: Disabled
Error in Make of Package


Hi Dears,
I have a problem with FUSE for lessfs,
I do ,./configure and it is right,
but I do , make , but it is not right and show below error:
Can you help me,Please?

Quote:
[root@localhost fuse-2.9.3]# make
Making all in include
make[1]: Entering directory `/root/Desktop/fuse-2.9.3/include'
make all-am
make[2]: Entering directory `/root/Desktop/fuse-2.9.3/include'
make[2]: Leaving directory `/root/Desktop/fuse-2.9.3/include'
make[1]: Leaving directory `/root/Desktop/fuse-2.9.3/include'
Making all in lib
make[1]: Entering directory `/root/Desktop/fuse-2.9.3/lib'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/Desktop/fuse-2.9.3/lib'
Making all in util
make[1]: Entering directory `/root/Desktop/fuse-2.9.3/util'
make all-am
make[2]: Entering directory `/root/Desktop/fuse-2.9.3/util'
make[2]: Nothing to be done for `all-am'.
make[2]: Leaving directory `/root/Desktop/fuse-2.9.3/util'
make[1]: Leaving directory `/root/Desktop/fuse-2.9.3/util'
Making all in example
make[1]: Entering directory `/root/Desktop/fuse-2.9.3/example'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/Desktop/fuse-2.9.3/example'
Making all in doc
make[1]: Entering directory `/root/Desktop/fuse-2.9.3/doc'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/Desktop/fuse-2.9.3/doc'
make[1]: Entering directory `/root/Desktop/fuse-2.9.3'
make[1]: Nothing to be done for `all-am'.
make[1]: Leaving directory `/root/Desktop/fuse-2.9.3'
Thanks,
 
Old 12-06-2014, 10:38 AM   #2
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Welcome to LQ.

No errors are shown in post #1.

» Nothing to be done for `all'. «, means everything is OK.


P.S. : Google, Nothing to be done for `all'
..... will show 1,000,000,000 hits.


-
 
Old 12-06-2014, 11:03 AM   #3
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,842

Rep: Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308
knudfl has right. just one more thing: do not use root to make (build) any software.
 
1 members found this post helpful.
Old 12-06-2014, 12:28 PM   #4
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
well here is ONE of the problems
Quote:
`/root/Desktop/fuse-2.9.3/include'
make all-am
you ARE running "configure and make as ROOT
a big " NO - NO"

AND
you are doing this in the root GUI ACCOUNT
an even BIGGER " NO -NO"

there should NOT EVEN BE A /root/Desktop folder for you to use !!!

and to make things even worse
building software on the " DESKTOP "

the Desktop folder is a mostly Decorative folder
building programs there might cause problems
and some DE's might not even let you easily do this


so
1)
step ONE

login to the GUI as a NORMAL USER !!!!!!!
2)
step two

do not build software on the DESKTOP

use the /bin folder in your HOME folder
most os's have one
/home/YourUserNAME/bin
and run "configure" and "make"
as a NORMAL USER

then and ONLY THEN become root BUT!!!! with that normal users settings
use " su "

3)
and lastly
there is no error in your post

BUT
you never installed it
you only built it
Code:
su 
----------- type in the root password when asked for -----------
make install
BUT
you might REALLY want to read the files
most will have options that NEED to be set

so
read the README and INSTALL files
and any documentation in the docs folder
and the code
Code:
./configure --help
a lot of programs have a "test" or "check" BUILT IN
Code:
make check
--- or ---
make test 
---- then IF IT PASSES ---
make install

Last edited by John VV; 12-06-2014 at 12:35 PM.
 
Old 12-07-2014, 01:13 AM   #5
hamsaeed
Member
 
Registered: Dec 2014
Posts: 47

Original Poster
Rep: Reputation: Disabled
Hi and Thanks,
but, i do your stages, but it show:
for $make ,show,only:

Quote:
make[1]: Leaving directory `/home/hamid/bin/lessfs-1.7.0'
thanks for your help,

Last edited by hamsaeed; 12-07-2014 at 03:34 AM.
 
Old 12-07-2014, 10:11 AM   #6
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by hamsaeed View Post
Hi and Thanks,
but, i do your stages, but it show:
for $make ,show,only:

thanks for your help,
Again, there is nothing to help WITH...the program compiled successfully. You're done. Use it.
 
1 members found this post helpful.
Old 12-09-2014, 08:50 AM   #7
hamsaeed
Member
 
Registered: Dec 2014
Posts: 47

Original Poster
Rep: Reputation: Disabled
Thanks dears,
 
  


Reply



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 On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Error from make process on CentOS 6.4 w/sysstat 5.0.6 package n3kfh Linux - Software 3 08-03-2013 05:07 PM
Buildroot m4 package make error parag_opensrc Linux - Embedded & Single-board computer 0 09-19-2009 01:43 AM
make menuconfig -buildroot error can't open file "package/festival/speech-tool balraj Linux - Newbie 0 09-08-2008 01:05 PM
Error code 1 when trying to get 'make' package in DSL Munksgaard Linux - Software 2 06-27-2006 06:11 AM
make xconfig qt package error suse 10.1 EclipseAgent SUSE / openSUSE 1 06-13-2006 02:57 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 05:44 PM.

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