On Sat, Feb 16, 2008 at 12:10:21PM +0000, Dan Andersson wrote: > On Saturday 16 February 2008 11:24:42 Ivan Stankovic wrote: > > ./get-geda.sh 1.4.0 > > Ubuntu 8.04 > > /// > > [EMAIL PROTECTED]:/home/dan/Geda# ./get-geda.sh > Usage: ./get-geda.sh <tag> > ./get-geda.sh -l > Examples: > ./get-geda.sh 1.4.0 > ./get-geda.sh 1.3.1-20080110 > [EMAIL PROTECTED]:/home/dan/Geda# ./get-geda.sh -l > [: 25: ==: unexpected operator > No release with name '-l'
This is weird, works for me (tm). Maybe a shell problem? I've tested the script with bash only... > /// > > "make config" > .. > .. > .. > checking for LIBGEDA... no > configure: error: libgeda detection error: No package 'libgeda' found > make: *** [gschem_config] Error 1 This is pkg-config not finding libgeda.pc. By default, when you do 'make config' libgeda will be installed in $(HOME)/geda and you need to tell pkg-config to look there: export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$(HOME)/geda/lib/pkgconfig Or, you could do 'make config prefix=/usr' to install everything under /usr. -- Ivan Stankovic, [EMAIL PROTECTED] "Protect your digital freedom and privacy, eliminate DRM, learn more at http://www.defectivebydesign.org/what_is_drm" _______________________________________________ geda-dev mailing list [email protected] http://www.seul.org/cgi-bin/mailman/listinfo/geda-dev
