This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Config help

General support and discussion of Eggdrop bots.
Post Reply
B
Bill2316
Voice
Posts: 2
Joined: Thu Nov 16, 2006 7:45 pm

Config help

Post by Bill2316 »

when i type ./configure i get this msg -bash: ./configure: /bin/sh: bad interpreter permission denied

I have tried googling it and seaching the forums for it but found nothing of help. Anyone know why?
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

From eggdrop.conf:
#! /path/to/executable/eggdrop
# ^- This should contain a fully qualified path to your Eggdrop executable.
It's the first line of the file.
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
C
Callisto
Halfop
Posts: 86
Joined: Sun Mar 13, 2005 11:04 am

Post by Callisto »

I think the original poster was having trouble with the initial pre compile ./configure not the actual eggdrop config set up. I have seen this before a long time ago and cant remember the solution. Try contacting the shell admin.
Sorry I cannot help
good luck
n
nml375
Revered One
Posts: 2860
Joined: Fri Aug 04, 2006 2:09 pm

Post by nml375 »

This error is caused by bash whenever it is unable to find the executable to parse the script, so Alchera's post is partially on target, although he got the wrong file.

Taken from configure provided in 1.6.18 tarball:

Code: Select all

#! /bin/sh
# From configure.ac Revision: 1.23 .
Most likely the system in question has some non-standard shell-definitions, most likely lacking a symbolic link from /bin/sh to bash (or any other viable shell on the system).

A quick-fix would be to bug someone with root privileges to execute this:

Code: Select all

cd /bin; ln -s bash sh
NML_375
Post Reply