Opened at 2010-11-06T17:55:27Z
Closed at 2010-11-20T15:19:54Z
#713 closed defect (fixed)
Make bitlbee's ./configure work with Eclipse
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | BitlBee | Version: | 3.0 |
Keywords: | Cc: | ||
IRC client+version: | Client-independent | Operating System: | Linux |
OS version/distro: |
Description
Eclipse uses absolute pathnames which confuses ./configure in thinking that it is doing out-of-source-dir build.
Attachments (1)
Change History (5)
Changed at 2010-11-06T17:55:45Z by
Attachment: | bitlbee-configure.patch added |
---|
comment:1 Changed at 2010-11-12T22:59:10Z by
I *love* readlink -f , but I'm pretty sure it won't be available on non-GNU systems. Can't try it out ATM though..
How else can we do this?
comment:2 Changed at 2010-11-13T18:30:06Z by
Well, the original version of the patch (not created by me) was
srcdir=cd $(dirname $0);pwd
currdir=pwd
if != "$currdir"?; then
It is ugly, but probably more portable. If you want to go in the other way, there is a discussion how to make portable readlink -f equivalent on
http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac
comment:3 Changed at 2010-11-13T18:31:27Z by
Damn, trac silly formatting defeated me again. It should be
srcdir=$(cd $(dirname $0);pwd) currdir=$(pwd) if ["$srcdir" != "$currdir"]; then
comment:4 Changed at 2010-11-20T15:19:54Z by
Resolution: | → fixed |
---|---|
Status: | new → closed |
suggested patch