Glich in libTremor autorun.sh

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
User avatar
sherpya
Posts: 61
Joined: Mon Oct 03, 2005 5:49 pm

Glich in libTremor autorun.sh

Post by sherpya »

original autorun.sh of libTremor does this

Code: Select all

&#40;libtool&#41; < /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: Select all

&#40;libtool --version&#41; < /dev/null > /dev/null
rinco
Posts: 255
Joined: Fri Jan 21, 2005 2:12 pm
Location: Canberra, Australia

Post by rinco »

libtool --version doesn't work on mac....
$ 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
$ /sw/bin/glibtool --version
ltmain.sh (GNU libtool) 1.3.5 (1.385.2.206 2000/05/27 11:12:27)
mrbrown
Site Admin
Posts: 1537
Joined: Sat Jan 17, 2004 11:24 am

Post by mrbrown »

Reverted to the original behavior, which is to pass --version.

Mac users can do "ln -s glibtool libtool".
User avatar
dsn
Posts: 47
Joined: Wed Nov 09, 2005 11:48 am
Location: Indianapolis, Indiana, USA

Post by dsn »

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.
Post Reply