Author Topic: wmsystray Error  (Read 1817 times)

0 Members and 1 Guest are viewing this topic.

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
wmsystray Error
« on: April 07, 2006, 08:24:22 pm »

I have no idea what to do with it.  I know that the error is coming out of the makefile (dur):
Code: [Select]
prefix=/usr
bindir = ${prefix}/bin
mandir = ${prefix}/share/man
INSTALL = /bin/install
INSTALLPROG = ${INSTALL} -m 0755
INSTALLMAN = ${INSTALL} -m 0644

[snip]

install: wmsystray/wmsystray
        mkdir -p ${bindir}
        mkdir -p ${bindir}/man1
        ${INSTALLPROG} wmsystray/wmsystray ${bindir}/wmsystray
        ${INSTALLMAN} doc/wmsystray.1 ${mandir}/man1/wmsystray.1

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: wmsystray Error
« Reply #1 on: April 08, 2006, 09:37:46 am »
You realize that you could just copy/paste the error here instead of making me go to an annoying site, right?

In any case, in the Makefile, try changing install to ginstall.  If that doesn't work, then see if you can find the "install" program.  It should be included in the fileutils package, if I'm not mistaken. 

If nothing else works, just the program to the directory.  That's all install really does. 

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: wmsystray Error
« Reply #2 on: April 08, 2006, 09:56:04 am »
I tried to copy + paste, but I couldn't figure it out (and Sidoh was no help with that).  Thanks, I'll try that.

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: wmsystray Error
« Reply #3 on: April 08, 2006, 01:29:02 pm »
Don't forget that you have to be root to move it into the other folder.  If you're copying/pasting with your window manager (do people do that?), you need to be able to do it as root. 

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: wmsystray Error
« Reply #4 on: April 08, 2006, 03:31:10 pm »
The image clearly shows my pretty #!

I just reinstalled Slack (again) to fix some issues.  I'll try changing it to ginstall when I get it again.  Thanks.