<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jimmy Z &#187; fix</title>
	<atom:link href="http://jimmyzimmerman.com/blog/tag/fix/feed" rel="self" type="application/rss+xml" />
	<link>http://jimmyzimmerman.com/blog</link>
	<description>Web Entrepreneur</description>
	<lastBuildDate>Mon, 02 Aug 2010 23:55:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Windows XP PATH not interpreting environment variables</title>
		<link>http://jimmyzimmerman.com/blog/2008/12/windows-xp-path-not-interpreting-environment-variables.html</link>
		<comments>http://jimmyzimmerman.com/blog/2008/12/windows-xp-path-not-interpreting-environment-variables.html#comments</comments>
		<pubDate>Tue, 23 Dec 2008 19:17:30 +0000</pubDate>
		<dc:creator>Jimmy'z</dc:creator>
				<category><![CDATA[Old Boring Posts]]></category>
		<category><![CDATA[fix]]></category>

		<guid isPermaLink="false">http://jimmyzimmerman.com/blog/?p=231</guid>
		<description><![CDATA[This one took me a while to figure out. I have my PATH environment variable set up to include other paths that are also defined by an environment variable. For example, I have Maven set up in the following way:

M2_HOME = C:\Program Files\Apache Software Foundation\apache-maven-2.0.9
M2 = %M2_HOME%\bin
PATH = %M2%;[a whole lot of other dirs]

Today, I [...]]]></description>
			<content:encoded><![CDATA[<p>This one took me a while to figure out. I have my PATH environment variable set up to include other paths that are also defined by an environment variable. For example, I have Maven set up in the following way:</p>
<p><code><br />
M2_HOME = C:\Program Files\Apache Software Foundation\apache-maven-2.0.9<br />
M2 = %M2_HOME%\bin<br />
PATH = %M2%;[a whole lot of other dirs]<br />
</code></p>
<p>Today, I tried to run a Maven build, and it wasn&#8217;t recognizing the maven\bin in my path. When I did an echo on my path, the path had the following:</p>
<p><code>%M2%;C:\Program Files...</code></p>
<p>instead of</p>
<p><code>C:\Program Files\Apache Software Foundation\apache-maven-2.0.9\bin</code></p>
<p>which would be the value of %M2%</p>
<p>When I did:</p>
<p><code>echo %M2%</code></p>
<p>I got the full path C:\Program Files\Apache Software Foundation\apache-maven-2.0.9\bin</p>
<p>What was going on?</p>
<p>Well, apparently, Windows has a limit on the size of your path and when it hits that limit, it just stops interpreting your %VARIABLES% set in the path.</p>
<p>So, the solution is to either reorganize all of your files into more succinctly named directories, or remove some of the dirs from your path.</p>
<p>Thanks M$. Hope this helps someone else.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmyzimmerman.com/blog/2008/12/windows-xp-path-not-interpreting-environment-variables.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
