Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* ./configure - Permission Denied
@ 2001-02-21 14:28 Schaefer, Kendra
  2001-02-21 16:00 ` Mathieu Dube
  2001-02-21 16:04 ` Kevin Buettner
  0 siblings, 2 replies; 5+ messages in thread
From: Schaefer, Kendra @ 2001-02-21 14:28 UTC (permalink / raw)
  To: 'gdb@sources.redhat.com'

I am trying to build gdb, and when I type ./configure in the gdb-5.0
directory, it says "Permission Denied."  Is this something I am doing wrong?

Confidential e-mail for addressee only.  Access to this e-mail by anyone else is unauthorized.
If you have received this message in error, please notify the sender immediately by reply e-mail 
and destroy the original communication.
From chastain@cygnus.com Wed Feb 21 15:41:00 2001
From: Michael Elizabeth Chastain <chastain@cygnus.com>
To: gdb@sources.redhat.com, Kendra.Schaefer@harley-davidson.com
Subject: Re: ./configure - Permission Denied
Date: Wed, 21 Feb 2001 15:41:00 -0000
Message-id: <200102212340.PAA23302@bosch.cygnus.com>
X-SW-Source: 2001-02/msg00284.html
Content-length: 388

Try this.  If your source is in /foo/bar/gdb-5.0:

  mkdir /foo/bar/build
  mkdir /foo/bar/install
  cd /foo/bar/build
  sh /foo/bar/gdb-5.0/configure --prefix=/foo/bar/install
  make
  make install

The important part is the "sh" part.  The other parts will make the
build go better in other ways.

Hope this helps,

Michael Elizabeth Chastain
<chastain@redhat.com>
"love without fear"


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: ./configure - Permission Denied
  2001-02-21 14:28 ./configure - Permission Denied Schaefer, Kendra
@ 2001-02-21 16:00 ` Mathieu Dube
  2001-02-21 16:04 ` Kevin Buettner
  1 sibling, 0 replies; 5+ messages in thread
From: Mathieu Dube @ 2001-02-21 16:00 UTC (permalink / raw)
  To: Schaefer, Kendra; +Cc: gdb

Are you doing this in your home directory ?

if youre not there and for instance /usr/local you need to be root or have the
permissions 

On Wed, 21 Feb 2001, you wrote:
> 
> I am trying to build gdb, and when I type ./configure in the gdb-5.0
> directory, it says "Permission Denied."  Is this something I am doing wrong?
> 
> Confidential e-mail for addressee only.  Access to this e-mail by anyone else is unauthorized.
> If you have received this message in error, please notify the sender immediately by reply e-mail 
> and destroy the original communication.
> 

----------------------------------------
Content-Type: text/html; name="unnamed"
Content-Transfer-Encoding: quoted-printable
Content-Description: 
----------------------------------------

-- 
Mathieu Dube
Mondo-Live
www.flipr.com


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: ./configure - Permission Denied
  2001-02-21 14:28 ./configure - Permission Denied Schaefer, Kendra
  2001-02-21 16:00 ` Mathieu Dube
@ 2001-02-21 16:04 ` Kevin Buettner
  2001-02-21 17:19   ` Mathieu Dube
  1 sibling, 1 reply; 5+ messages in thread
From: Kevin Buettner @ 2001-02-21 16:04 UTC (permalink / raw)
  To: Schaefer, Kendra, 'gdb@sources.redhat.com'

On Feb 21,  4:28pm, Schaefer, Kendra wrote:

> I am trying to build gdb, and when I type ./configure in the gdb-5.0
> directory, it says "Permission Denied."  Is this something I am doing wrong?

How are the permissions and owner set on this file?

Kevin


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: ./configure - Permission Denied
  2001-02-21 16:04 ` Kevin Buettner
@ 2001-02-21 17:19   ` Mathieu Dube
  2001-02-21 17:41     ` Kevin Buettner
  0 siblings, 1 reply; 5+ messages in thread
From: Mathieu Dube @ 2001-02-21 17:19 UTC (permalink / raw)
  To: Kevin Buettner; +Cc: gdb

with chmod and chown

if its in your dir there shouldnt be any problem

try it in /home/kevin(or whatever username you have)/gdb


On Wed, 21 Feb 2001, you wrote:
> On Feb 21,  4:28pm, Schaefer, Kendra wrote:
> 
> > I am trying to build gdb, and when I type ./configure in the gdb-5.0
> > directory, it says "Permission Denied."  Is this something I am doing wrong?
> 
> How are the permissions and owner set on this file?
> 
> Kevin
-- 
Mathieu Dube
Mondo-Live
www.flipr.com


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: ./configure - Permission Denied
  2001-02-21 17:19   ` Mathieu Dube
@ 2001-02-21 17:41     ` Kevin Buettner
  0 siblings, 0 replies; 5+ messages in thread
From: Kevin Buettner @ 2001-02-21 17:41 UTC (permalink / raw)
  To: mathieu_dube; +Cc: gdb

On Feb 21,  8:36pm, Mathieu Dube wrote:

> On Wed, 21 Feb 2001, you wrote:
> > On Feb 21,  4:28pm, Schaefer, Kendra wrote:
> > 
> > > I am trying to build gdb, and when I type ./configure in the gdb-5.0
> > > directory, it says "Permission Denied."  Is this something I am doing wrong?
> > 
> > How are the permissions and owner set on this file?
>
> with chmod and chown
> 
> if its in your dir there shouldnt be any problem
> 
> try it in /home/kevin(or whatever username you have)/gdb

You misunderstand.  I was asking Kendra what the permissions and
owner were set to on configure.  I figured that the most likely
problem was that either the execute bit was not set or else it
was set, but Kendra did not have permission to execute the file
due to the owner being different.  A simple ``ls -l ./configure''
will give the answer.

Kevin


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2001-02-21 17:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-02-21 14:28 ./configure - Permission Denied Schaefer, Kendra
2001-02-21 16:00 ` Mathieu Dube
2001-02-21 16:04 ` Kevin Buettner
2001-02-21 17:19   ` Mathieu Dube
2001-02-21 17:41     ` Kevin Buettner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox