| View previous topic :: View next topic |
| Author |
Message |
sherpya

Joined: 03 Oct 2005 Posts: 61
|
Posted: Mon Nov 07, 2005 10:01 pm Post subject: Glich in libTremor autorun.sh |
|
|
original autorun.sh of libTremor does this
| Code: |
(libtool) < /dev/null > /dev/null
|
since my libtool and I think also other version returns false without params
I suggesto to change the lin to
| Code: |
(libtool --version) < /dev/null > /dev/null
|
|
|
| Back to top |
|
 |
rinco
Joined: 21 Jan 2005 Posts: 255 Location: Canberra, Australia
|
Posted: Mon Nov 07, 2005 10:05 pm Post subject: |
|
|
libtool --version doesn't work on mac....
| Quote: |
$ libtool --version
libtool: unknown option character `-' in: --version
Usage: libtool -static [-] file [...] [-filelist listfile[,dirname]] [-arch_only arch] [-sacLT]
Usage: libtool -dynamic [-] file [...] [-filelist listfile[,dirname]] [-arch_only arch] [-o output] [-install_name name] [-compatibility_version #] [-current_version #] [-seg1addr 0x#] [-segs_read_only_addr 0x#] [-segs_read_write_addr 0x#] [-seg_addr_table <filename>] [-seg_addr_table_filename <file_system_path>] [-all_load] [-noall_load]
|
a gnu libtool can be installed but it's called glibtool
| Quote: | $ /sw/bin/glibtool --version
ltmain.sh (GNU libtool) 1.3.5 (1.385.2.206 2000/05/27 11:12:27)
|
|
|
| Back to top |
|
 |
mrbrown
Joined: 17 Jan 2004 Posts: 1536
|
Posted: Tue Nov 08, 2005 2:20 am Post subject: |
|
|
Reverted to the original behavior, which is to pass --version.
Mac users can do "ln -s glibtool libtool". |
|
| Back to top |
|
 |
dsn

Joined: 09 Nov 2005 Posts: 47 Location: Indianapolis, Indiana, USA
|
Posted: Sat Nov 19, 2005 4:31 am Post subject: |
|
|
| Tiger has glibtool and glibtoolize installed by default. Instead of creating a symbolic link, you can do a find-and-replace on autorun.sh to use glibtool instead of libtool. |
|
| Back to top |
|
 |
|