Results 1 to 4 of 4

Thread: ./configure No such file or directory

  1. #1
    Join Date
    Dec 2004
    Location
    Korea
    Beans
    440
    Distro
    Ubuntu 12.04 Precise Pangolin

    ./configure No such file or directory

    I'm trying to install the 32bit wine from source on my 64 box so I can install a 32bit program (which won't install on Windows 7). I follow the commands from http://wiki.winehq.org/WineOn64bit:

    sudo apt-get build-dep wine
    mkdir -p ./lib32
    ln -s /usr/lib32/mesa/libGL.so.1 ./lib32/libGL.so
    CC="ccache gcc" LDFLAGS="-L./lib32" ./configure -v
    make
    sudo make install

    However, when I get to "CC="ccache gcc" LDFLAGS="-L./lib32" ./configure -v" it simply says: "bash: ./configure No such file or directory"

    Which part am I doing incorrectly?
    Linux Gamer.
    Steam: rudeboyskunk
    Desura: rudeboyskunk
    Add me as a friend. Kill zombies/aliens/nazis with me. ON LINUX.

  2. #2
    Join Date
    Dec 2005
    Location
    Western Australia
    Beans
    11,480
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: ./configure No such file or directory

    Quote Originally Posted by rudeboyskunk View Post
    I'm trying to install the 32bit wine from source on my 64 box so I can install a 32bit program (which won't install on Windows 7). I follow the commands from http://wiki.winehq.org/WineOn64bit:

    sudo apt-get build-dep wine
    mkdir -p ./lib32
    ln -s /usr/lib32/mesa/libGL.so.1 ./lib32/libGL.so
    CC="ccache gcc" LDFLAGS="-L./lib32" ./configure -v
    make
    sudo make install

    However, when I get to "CC="ccache gcc" LDFLAGS="-L./lib32" ./configure -v" it simply says: "bash: ./configure No such file or directory"

    Which part am I doing incorrectly?
    Probably the whole thing - Wine in the repositories is 32-bit and runs 32-bit Windows programs. You certainly don't need to roll your own.

    If you know something I don't and you definitely do need to compile it from source, then it sounds like your terminal isn't navigated to the directory that contains the "configure" file that comes with the Wine source code. If you don't know how to navigate a terminal, then type "cd " (without the quote marks, and WITH the space at the end) and then drag the folder icon onto the terminal, then press Enter and try your command again.
    I try to treat the cause, not the symptom. I avoid the terminal in instructions, unless it's easier or necessary. My instructions will work within the Ubuntu system, instead of breaking or subverting it. Those are the three guarantees to the helpee.

  3. #3
    Join Date
    Dec 2004
    Location
    Korea
    Beans
    440
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: ./configure No such file or directory

    The wine I've been installing is 64 bit, and any time I try to install a 32 bit package it won't work, so I'm trying to do it this way.

    I'm fairly certain I'm in the correct directory.
    Linux Gamer.
    Steam: rudeboyskunk
    Desura: rudeboyskunk
    Add me as a friend. Kill zombies/aliens/nazis with me. ON LINUX.

  4. #4
    Join Date
    Dec 2007
    Location
    ur LHC leakin ur protons
    Beans
    87
    Distro
    Kubuntu 10.04 Lucid Lynx

    Re: ./configure No such file or directory

    Try this:

    Code:
    ls . | grep configure
    If it comes back blank, you're definitely in the wrong place.

    HtH

Tags for this Thread

Bookmarks

Posting Permissions

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