On 2010-10-12 03:17, Jaime Oliver wrote: > Hi all, > > I am getting the following error when running ./configure in the latest gem > from svn: > > checking whether ln -s works... yes > ./configure: line 3662: syntax error near unexpected token > `REFERENCEPATH=$GEM_RTE_REFERENCEPATH' > ./configure: line 3662: `REFERENCEPATH=$GEM_RTE_REFERENCEPATH' > > any idea what it means? >
no, not really. it's probably some problem with you /bin/sh (which shell are you using). anyhow, the REFERENCEPATH is not needed anyhow, so you could just get rid of the 2 offending lines in configure.ac (see attached patch), re-run autoconf && ./configure if this doesn't help, then the problem is probably elsewhere. (just a wild guess: maybe you have to change 'GEM_CHECK_RTE()' to 'GEM_CHECK_RTE') gmasdr IOhannes
Index: configure.ac =================================================================== --- configure.ac (Revision 3464) +++ configure.ac (Arbeitskopie) @@ -35,7 +35,6 @@ AC_SUBST(PKG_CFLAGS) AC_SUBST(PKG_LIBS) AC_SUBST(prefix) -AC_SUBST(REFERENCEPATH) AC_SUBST(CONFIGUREFLAGS) ## store the flags passed to us @@ -56,7 +55,6 @@ GEM_CHECK_RTE() -REFERENCEPATH=$GEM_RTE_REFERENCEPATH GEM_ARG_ENABLE([PIC], [PositionIndependentCode (potentially slower)])
smime.p7s
Description: S/MIME Cryptographic Signature
_______________________________________________ [email protected] mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
