Hi, 
Sorry I didn't explain that.... I am using CentOs... but this should work in 
your environment. 

To see what your environment variables are set to in your curreent session - 
you can type: 
env 
on the command line. 
This will return a bunch of output like... 
LOGNAME=bakert 
PWD=/home/bakert 
. 
. 
. 
VARIABLENAME=blah/blah... 

You can use grep to look for specific strings - to make the list shorter... 
for example if I want to see what my PATH variable has in it - I can say: 
env | grep PATH 

This will only return lines that have the string "PATH" in it...Note: Case 
sensitive....... 

To specifically set an environment variable - you use the export command. This 
will set a variable for an 
active session only. So. in my system I had to say: 
export DOCBOOK_STYLESHEETS=/usr/share/sgml/docbook/xsl-ns-stylesheets 

to see what it is set to you can use the echo command.. 

So in this case 
echo $DOCBOOK_STYLESHEETS 

will show what that variable name is set to. 

A variable name is designated by the $ sign. If you type 
echo JUNK 

it will respond: 
JUNK 

if you type echo $JUNK 

it will respond with whatever $JUNK is set to.... 
If you get a blank line - then it is set to nothing.....(i.e. never been set). 
Again remember - case matters - so junk and JUNK are different. Any 
program that is looking for a variable will be looking for it spelled in UPPER 
CASE. 
You should probably look at the docbook and xsl man pages... 

I hope this isn't confusing you more...there is lots of stuff you can read on 
setting environment variables 
in LINUX - and I am not sure where your installation of xsl-ns-stylesheets is 
installed , but where ever that is - 
that's what you want to set the DOCBOOK_STYLESHEETS variable to... 

This is documented in the INSTALL file under glasscoder directory - look in 
there for further information... 
It specifically mentioned needing to set the environment variable.... 

Let me know if I can help you any further. 

Best of luck, 

Todd Baker 


From: [email protected] 
To: "Todd Baker" <[email protected]> 
Cc: "jorge soto" <[email protected]>, "User discussion about the Rivendell 
Radio Automation System" <[email protected]> 
Sent: Monday, April 4, 2016 8:07:52 AM 
Subject: Re: [RDD] glasscoder error 

Sorry for my ignorance, but where or how do I set this variable up? 

Sent from my iPhone 

On Apr 4, 2016, at 7:50 AM, Todd Baker < [email protected] > wrote: 




Dear Jorge, et. al, 

I am not sure if this is your problem, but maybe it can't find your docbook 
stylesheets? 

I have a similar compile build for the Rivendell C API libs, and I had to have 
and environment variable that told it where the style sheets were... 

My environment has: 
DOCBOOK_STYLESHEETS=/usr/share/sgml/docbook/xsl-ns-stylesheets 

Are you setting this variable to where the xsl stuff is?... 

Hope this helps - just a guess.... 

Todd Baker 


From: [email protected] 
To: "jorge soto" < [email protected] > 
Cc: "User discussion about the Rivendell Radio Automation System" < 
[email protected] > 
Sent: Saturday, April 2, 2016 10:11:39 PM 
Subject: Re: [RDD] glasscoder error 

I wish someone know what was wrong. 

Sent from my iPhone 

On Apr 2, 2016, at 10:06 PM, jorge soto < [email protected] > wrote: 


BQ_BEGIN



I got busy with other things and stopped looking into it. 
On Apr 2, 2016 6:01 PM, < [email protected] > wrote: 

BQ_BEGIN
I'm getting this too. Did you figure it out? 

Sent from my iPhone 

> On Mar 21, 2016, at 12:21 AM, jorge soto < [email protected] > wrote: 
> 
> Trying to compile Glasscoder on ubuntustudio 14.04, configures fine but 
> during make it throws out the following: 
> 
> make[1]: Entering directory `/home/jorge/GlassCoder-master/docs' 
> xsltproc /manpages/docbook.xsl glasscoder.xml 
> warning: failed to load external entity "/manpages/docbook.xsl" 
> cannot parse /manpages/docbook.xsl 
> make[1]: *** [glasscoder.1] Error 4 
> make[1]: Leaving directory `/home/jorge/GlassCoder-master/docs' 
> make: *** [all-recursive] Error 1 
> 
> I have xsltproc and docbook.xsl installed, any ideas what I'm missing? 
> _______________________________________________ 
> Rivendell-dev mailing list 
> [email protected] 
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev 




BQ_END

_______________________________________________ 
Rivendell-dev mailing list 
[email protected] 
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev 

BQ_END

_______________________________________________
Rivendell-dev mailing list
[email protected]
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev

Reply via email to