LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 11-10-2003, 12:05 AM   #1
shiny_spoon
Member
 
Registered: Oct 2003
Location: Ontario, Canada
Distribution: Mandrake 9.1
Posts: 47

Rep: Reputation: 15
Nothing to be done for `install-exec-am'...


Hi... I'm getting quite frustrated with Mandrake. I successfully compile and install about 1 out of 5 programs I try. Everything else gives me something along the lines of:

Nothing to be done for `install-exec-am'
or
Nothing to be done for `install-data-am'

This was never a problem with SuSe a couple of months back. "./configure" always works fine, "make" sometimes works and sometimes ends up with the above... "make install" just about never works!

Here's an example of what pushed me over the edge and made me come on here to beg for answers. It's a KDE theme I'm trying to install. Configure and make both went through ok.

[spoon@localhost alloy-0.4.1a]$ su
Password:
[root@localhost alloy-0.4.1a]# make install
Making install in alloystyle
make[1]: Entering directory `/main/Downloads/alloy-0.4.1a/alloystyle'
make[2]: Entering directory `/main/Downloads/alloy-0.4.1a/alloystyle'
make[2]: Nothing to be done for `install-exec-am'.
/bin/sh ../admin/mkinstalldirs /usr/local/kde/share/apps/kdisplay/color-schemes
/usr/bin/install -c -p -m 644 alloy.kcsrc /usr/local/kde/share/apps/kdisplay/color-schemes/alloy.kcsrc
/bin/sh ../admin/mkinstalldirs /usr/local/kde/lib/kde3/plugins/styles
/bin/sh ../libtool --silent --mode=install /usr/bin/install -c -p alloy.la /usr/local/kde/lib/kde3/plugins/styles/alloy.la
PATH="$PATH:/sbin" ldconfig -n /usr/local/kde/lib/kde3/plugins/styles
/bin/sh ../admin/mkinstalldirs /usr/local/kde/share/apps/kstyle/themes
/usr/bin/install -c -p -m 644 alloy.themerc /usr/local/kde/share/apps/kstyle/themes/alloy.themerc
make[2]: Leaving directory `/main/Downloads/alloy-0.4.1a/alloystyle'
make[1]: Leaving directory `/main/Downloads/alloy-0.4.1a/alloystyle'
Making install in alloyclient
make[1]: Entering directory `/main/Downloads/alloy-0.4.1a/alloyclient'
Making install in config
make[2]: Entering directory `/main/Downloads/alloy-0.4.1a/alloyclient/config'
make[3]: Entering directory `/main/Downloads/alloy-0.4.1a/alloyclient/config'
/bin/sh ../../admin/mkinstalldirs /usr/local/kde/lib/kde3
/bin/sh ../../libtool --silent --mode=install /usr/bin/install -c -p kwin_alloy_config.la /usr/local/kde/lib/kde3/kwin_alloy_config.la
PATH="$PATH:/sbin" ldconfig -n /usr/local/kde/lib/kde3
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/main/Downloads/alloy-0.4.1a/alloyclient/config'
make[2]: Leaving directory `/main/Downloads/alloy-0.4.1a/alloyclient/config'
make[2]: Entering directory `/main/Downloads/alloy-0.4.1a/alloyclient'
make[3]: Entering directory `/main/Downloads/alloy-0.4.1a/alloyclient'
/bin/sh ../admin/mkinstalldirs /usr/local/kde/lib/kde3
/bin/sh ../libtool --silent --mode=install /usr/bin/install -c -p kwin_alloy.la /usr/local/kde/lib/kde3/kwin_alloy.la
PATH="$PATH:/sbin" ldconfig -n /usr/local/kde/lib/kde3
/bin/sh ../admin/mkinstalldirs /usr/local/kde/share/apps/kwin/
/usr/bin/install -c -p -m 644 alloy.desktop /usr/local/kde/share/apps/kwin//alloy.desktop
make[3]: Leaving directory `/main/Downloads/alloy-0.4.1a/alloyclient'
make[2]: Leaving directory `/main/Downloads/alloy-0.4.1a/alloyclient'
make[1]: Leaving directory `/main/Downloads/alloy-0.4.1a/alloyclient'
make[1]: Entering directory `/main/Downloads/alloy-0.4.1a'
make[2]: Entering directory `/main/Downloads/alloy-0.4.1a'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/main/Downloads/alloy-0.4.1a'
make[1]: Leaving directory `/main/Downloads/alloy-0.4.1a'

As you can probably tell, I am no programmer and have only a vague understanding of what make spits out

Can anyone help me out...? I really would like to keep Mandrake for a little while. And as much as I like hunting for RPM's, I'll gladly get myself a copy of SuSe 9.0 if I can't compile anything.

Thanks!
 
Old 11-10-2003, 12:18 AM   #2
quatsch
LQ Addict
 
Registered: Aug 2003
Location: New York, NY
Distribution: gentoo, gentooPPC
Posts: 1,661

Rep: Reputation: 48
'nothing to be done' need not be bad news. It just means that there is nothing to be done for that specific part (maybe because of your system specs or the arguments you passed to configure or whatever). Did you actually see if the programs run after doing make install?
 
Old 11-10-2003, 01:53 AM   #3
shiny_spoon
Member
 
Registered: Oct 2003
Location: Ontario, Canada
Distribution: Mandrake 9.1
Posts: 47

Original Poster
Rep: Reputation: 15
Hmmm... to tell you the truth, I think I tried twice. After seeing that the applications didn't run at that time, I assumed it would always be like this if I encountered a nothing to be done. Since I had'nt encountered such a message in SuSe (which is what I'm used to) I panicked!

I'll look deeper into it and see if things will run despite the messages!

Thanks.
 
Old 11-10-2003, 10:28 AM   #4
quatsch
LQ Addict
 
Registered: Aug 2003
Location: New York, NY
Distribution: gentoo, gentooPPC
Posts: 1,661

Rep: Reputation: 48
since you're using mandrake... You'll probably have to do something like
./configure --prefix=/usr
to get a lot of the things working. I'm not sure about the kde theme though. From your output, it seems to be installing things under /usr/local/kde and I'm quite sure that will not have any effect on your system (it's not where mandrake installs its kde stuff).

Also, if compile and install fails for some reason, do
make clean
before recompiling. This will get rid of stuff lying around from the previous compile.

Last edited by quatsch; 11-10-2003 at 10:29 AM.
 
Old 11-10-2003, 11:58 AM   #5
shiny_spoon
Member
 
Registered: Oct 2003
Location: Ontario, Canada
Distribution: Mandrake 9.1
Posts: 47

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by quatsch
since you're using mandrake... You'll probably have to do something like
./configure --prefix=/usr
to get a lot of the things working.
Thats the one!! Doing a bit of tinkering yesterday I found out that the theme files and stuff were always installing and could be located with find, but I couldn't see them in KDE control center. With that switch it seems ok! Programs are running as well now.

Thanks for your help!
 
  


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



Similar Threads
Thread Thread Starter Forum Replies Last Post
Trying to install dvd::rip but :Can't exec "gnome-config" jimdaworm Slackware 49 01-02-2006 02:32 PM
how to fork/ exec schneidz Programming 10 08-30-2005 11:50 AM
Power Exec 4/25 Colorplus laptop Debian install C1P40R Linux - Laptop and Netbook 0 07-21-2005 11:50 AM
c++ exec fosh Programming 2 07-04-2004 10:44 AM
cannot exec as person Linux From Scratch 5 12-19-2003 04:31 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 10:35 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