
jesse at bestpractical
Jun 29, 2008, 2:30 AM
Post #2 of 2
(148 views)
Permalink
|
|
Re: (very) minor bug in Makefile for rt3.8.0rc2
[In reply to]
|
|
Yep. fixed just last night. Thanks! On Jun 26, 2008, at 4:27 PM, Olly Stephens wrote: > Hi, > > Working on a new RT installation and have just installed rt3.8.0rc2. > > Noticed a minor bug in the Makefile. Probably only noticed it > because I > installed as a regular user rather than root. You declare a variable > called "RT_LOCAL_PLUGIN_PATH" but when you use it, you have dropped > the > "RT_" part. > > The following patch sorts it out: > > --- Makefile.in.orig 2008-06-26 08:25:15.218716000 +0100 > +++ Makefile.in 2008-06-26 08:25:39.402505000 +0100 > @@ -103,7 +103,7 @@ > RT_VAR_PATH = @RT_VAR_PATH_R@ > RT_DOC_PATH = @RT_DOC_PATH_R@ > RT_LOCAL_PATH = @RT_LOCAL_PATH_R@ > -RT_LOCAL_PLUGIN_PATH = @RT_LOCAL_PATH_R@/plugins > +LOCAL_PLUGIN_PATH = @RT_LOCAL_PATH_R@/plugins > LOCAL_ETC_PATH = @LOCAL_ETC_PATH_R@ > LOCAL_LIB_PATH = @LOCAL_LIB_PATH_R@ > LOCAL_LEXICON_PATH = @LOCAL_LEXICON_PATH_R@ > > > Olly > > -- > IMPORTANT NOTICE: The contents of this email and any attachments are > confidential and may also be privileged. If you are not the intended > recipient, please notify the sender immediately and do not disclose > the contents to any other person, use it for any purpose, or store > or copy the information in any medium. Thank you. > > > _______________________________________________ > List info: http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-devel > _______________________________________________ List info: http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-devel
|