Find the answer to your Linux question:
Results 1 to 3 of 3
i downloaded gnome panel using apt-get and made a few subtle changes to already existing files. after doing ./configure when i type make the following is displayed make all-recursive make[1]: ...
  1. #1
    Just Joined!
    Join Date
    Jul 2008
    Posts
    5

    problem installing gnome panel



    i downloaded gnome panel using apt-get and made a few subtle changes to already existing
    files. after doing ./configure when i type make the following is displayed


    make all-recursive
    make[1]: Entering directory `/root/gnome/a/gnome-panel-2.14.3'
    Making all in po
    make[2]: Entering directory `/root/gnome/a/gnome-panel-2.14.3/po'
    file=`echo af | sed 's,.*/,,'`.gmo \
    && rm -f $file && -o $file af.po
    /bin/sh: line 1: -o: command not found
    make[2]: *** [af.gmo] Error 127
    make[2]: Leaving directory `/root/gnome/a/gnome-panel-2.14.3/po'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/root/gnome/a/gnome-panel-2.14.3'
    make: *** [all] Error 2

  2. #2
    Linux Engineer GNU-Fan's Avatar
    Join Date
    Mar 2008
    Posts
    935
    Quote Originally Posted by viapillai View Post
    file=`echo af | sed 's,.*/,,'`.gmo \
    && rm -f $file && -o $file af.po
    I don't know where this problem comes from but this line is syntactically incorrect as
    Code:
    && -o $file af.po
    is missing an actual command between the && and -o.

    Could be that it is supposed to read
    Code:
    && gcc -o $file af.po
    but I am just guessing.

    Are you sure your configure ran without errors?

  3. #3
    Just Joined!
    Join Date
    Jul 2008
    Posts
    1

    Thumbs up i receive a funny green joke message

    An Arab me wore new NFL jerseys was interviewed at a U.S checkpoint.Guard: your name please?Arab: runescape moneyG:Sex?A: 6 items a week.G: I mean,male or female?A: It doesn't matter,sometimes even camelG: holy cow!A: yes cows and dogs too!G: man,isn't that hostile?A: hostile,dogstyle any free style!G;oh dear!A Deer?No deer,they run fast....

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •