<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: How do I change /Developer/ to /Applications/Developer/ in OS X</title>
	<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X/</link>
	<description>Comments on Ask MetaFilter post How do I change /Developer/ to /Applications/Developer/ in OS X</description>
	<pubDate>Tue, 31 Jan 2006 15:59:15 -0800</pubDate>
	<lastBuildDate>Tue, 31 Jan 2006 15:59:15 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: How do I change /Developer/ to /Applications/Developer/ in OS X</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X</link>	
		<description>A stupid Apple Xcode question. &lt;br /&gt;&lt;br /&gt; I like to keep the directories on my computer organized. I guess I&apos;m the only person in the world who does that.&lt;br&gt;
&lt;br&gt;
Anyway, I moved the Developer folder into the Applications folder. My reasoning was Xcode Tools are applications, therefore, I could put them in the Applications folder. Boy, was I wrong.&lt;br&gt;
&lt;br&gt;
Long story short, whatever project I try to build in Xcode, any project at all...will not build because of the error: &quot;Task not found at path: /Developer/...&quot;&lt;br&gt;
&lt;br&gt;
Apple offers no support for this product, at least, over the phone. The only suggestion from the Apple rep was to reinstall the application. The installer gives the user no chance to specify a directory.&lt;br&gt;
&lt;br&gt;
Anyway, is there a way to ask my Macintosh, kindly, if it would please not mind the fact that I would rather enjoy having the Developer folder in the Applications folder?&lt;br&gt;
&lt;br&gt;
Maybe a polite sudo command? Is there a registry I could edit?&lt;br&gt;
&lt;br&gt;
I don&apos;t know why this bothering me so much. I just thought the Mac&apos;s &quot;especial,&quot; was one could drag and drop folders into other folders without breaking applications.</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2006:site.31833</guid>
		<pubDate>Tue, 31 Jan 2006 15:29:30 -0800</pubDate>
		<dc:creator>Colloquial Collision</dc:creator>
		
			<category>apple</category>
		
			<category>mac</category>
		
			<category>osx</category>
		
			<category>xcode</category>
		
	</item> <item>
		<title>By: cillit bang</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X#498750</link>	
		<description>A big chunk of the Developer Tools is not applications. Look in the Headers and Makefiles and SDK directories. I&apos;d treat it as a system folder that can only be in one place.&lt;br&gt;
&lt;br&gt;
What&apos;s the path exactly that it complains about?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31833-498750</guid>
		<pubDate>Tue, 31 Jan 2006 15:59:15 -0800</pubDate>
		<dc:creator>cillit bang</dc:creator>
	</item><item>
		<title>By: teece</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X#498767</link>	
		<description>What you&apos;re seeing is some script or application or makefile hardcoded to the /Developer path.  (Or more likely, many such things hardcoded).&lt;br&gt;
&lt;br&gt;
If it were just scripts or makefiles choking, you could try to hunt them down in the /Developer folder and change the paths.  For instance, you could grep for &apos;/Developer/&apos;, see what pops up, and change it to &apos;/Application/Developer&apos; if it seems appropriate.  But if the path was hard-coded into binaries, it seems like it will be much more of a pain.&lt;br&gt;
&lt;br&gt;
But I just did that, and it would be a royal pain in the ass to weed through the output, and it&apos;s not at all clear it&apos;d really work.  Most of what&apos;s popping up is documentation  -- even if you don&apos;t search in the documentation subdirectory.&lt;br&gt;
&lt;br&gt;
Unless you are really into hacking, I doubt there is going to be a fix for this.  But it&apos;d be nice to be proven wrong, as I&apos;d rather have Developer in Apps, too.  (For instance, I suspect a kernel hacker could write a kext that would intercept all filesystem calls to /Developer and redirect them wherever you want.  But honestly, who&apos;s gonna do that?).&lt;br&gt;
&lt;br&gt;
But I suspect that some of the tools in Xcode are sloppily written, and depend completely upon stuff being in /Developer.&lt;br&gt;
&lt;br&gt;
Note to Apple:  If it&apos;s not already the case, all XCode stuff should use a variable ${XCode-Root} (or whatever semantics the language wanted) rather than just blindly assuming it&apos;s all in /Developer, and the variable should be configurable or intelligently guessed.  But I doubt they really care if it bugs a few of us weirdos.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31833-498767</guid>
		<pubDate>Tue, 31 Jan 2006 16:19:34 -0800</pubDate>
		<dc:creator>teece</dc:creator>
	</item><item>
		<title>By: sbutler</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X#498768</link>	
		<description>Well... this is cheating, but you could do this:&lt;br&gt;
&lt;br&gt;
ln -s /Developer /Applications/Developer&lt;br&gt;
/Developer/Tools/SetFile -a V /Developer&lt;br&gt;
&lt;br&gt;
That doesn&apos;t really move the files, but it does make the &quot;appear&quot; where you want and hide it in the root.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31833-498768</guid>
		<pubDate>Tue, 31 Jan 2006 16:21:55 -0800</pubDate>
		<dc:creator>sbutler</dc:creator>
	</item><item>
		<title>By: xil</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X#498781</link>	
		<description>It would be nice if the tools worked the way you want.  But in the short term, they don&apos;t, and you&apos;re not going to gain anything but pain by moving them around.  Be pragmatic and leave them where they were.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31833-498781</guid>
		<pubDate>Tue, 31 Jan 2006 16:37:57 -0800</pubDate>
		<dc:creator>xil</dc:creator>
	</item><item>
		<title>By: teece</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X#498804</link>	
		<description>Good idea, sbutler, but I&apos;d try it the other way.&lt;br&gt;
&lt;br&gt;
Move Developer to Applications.  Link &lt;i&gt;that&lt;/i&gt; to /Developer.  Hide the symlink.  It might work.  I dunno.  I don&apos;t want to find out right now, but if you&apos;re already in a movin&apos; mood, you could give it a try, Colloquial Collision.&lt;br&gt;
&lt;br&gt;
I&apos;m in the middle of a project, I just know if I try it I&apos;m going to accidentally destroy something and ruin my groove.&lt;br&gt;
&lt;br&gt;
&lt;tt&gt;&lt;br&gt;
sudo mv /Developer /Applications&lt;br&gt;
&lt;br&gt;
ln -s /Applications/Developer /Developer&lt;br&gt;
&lt;br&gt;
/Applications/Developer/Tools/SetFile -P -a V /Developer&lt;/tt&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31833-498804</guid>
		<pubDate>Tue, 31 Jan 2006 17:00:33 -0800</pubDate>
		<dc:creator>teece</dc:creator>
	</item><item>
		<title>By: sbutler</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X#498837</link>	
		<description>You can&apos;t hide symlinks, I&apos;ve tried :( The &apos;invisible&apos; flag only applies to directories.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31833-498837</guid>
		<pubDate>Tue, 31 Jan 2006 17:35:46 -0800</pubDate>
		<dc:creator>sbutler</dc:creator>
	</item><item>
		<title>By: sbutler</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X#498839</link>	
		<description>Wait... n/m.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31833-498839</guid>
		<pubDate>Tue, 31 Jan 2006 17:38:32 -0800</pubDate>
		<dc:creator>sbutler</dc:creator>
	</item><item>
		<title>By: Colloquial Collision</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X#498949</link>	
		<description>How do you hide a symlink?&lt;br&gt;
&lt;br&gt;
Thanks teece, everything worked except that last line.&lt;br&gt;
&lt;br&gt;
&lt;tt&gt;/Applications/Developer/Tools/SetFile -P -a V /Developer&lt;/tt&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31833-498949</guid>
		<pubDate>Tue, 31 Jan 2006 20:41:38 -0800</pubDate>
		<dc:creator>Colloquial Collision</dc:creator>
	</item><item>
		<title>By: Colloquial Collision</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X#498975</link>	
		<description>Okay, I hid the symlink by adding a . at the beginning of the alias, which breaks Xcode...again.&lt;br&gt;
&lt;br&gt;
It also gives the same error.&lt;br&gt;
&lt;br&gt;
&quot;Task not found at path: /Developer/Java/Ant/bin/ant&quot;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31833-498975</guid>
		<pubDate>Tue, 31 Jan 2006 21:12:59 -0800</pubDate>
		<dc:creator>Colloquial Collision</dc:creator>
	</item><item>
		<title>By: Colloquial Collision</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X#498982</link>	
		<description>Okay...I got it!&lt;br&gt;
&lt;br&gt;
I recreated the .hidden file (previously found in other versions of OS X) and added the Developer alias to that file.&lt;br&gt;
&lt;br&gt;
So, my last question...(I know, one question a week, &amp;amp;c.)&lt;br&gt;
&lt;br&gt;
Should I be worried that I had to recreate a semi-obsolete file? I mean, there is a reason the .hidden file was removed from OS X 10.4.4 in the first place, right?&lt;br&gt;
&lt;br&gt;
So to recap:&lt;br&gt;
&lt;br&gt;
&lt;tt&gt;sudo mv /Developer /Applications&lt;br&gt;
&lt;br&gt;
ln -s /Applications/Developer /Developer&lt;/tt&gt;&lt;br&gt;
&lt;br&gt;
And then create the .hidden file and add the Developer alias to it by simply typing &lt;br&gt;
&lt;br&gt;
&lt;tt&gt;Developer&lt;/tt&gt;&lt;br&gt;
&lt;br&gt;
Thanks for the help everyone!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31833-498982</guid>
		<pubDate>Tue, 31 Jan 2006 21:28:12 -0800</pubDate>
		<dc:creator>Colloquial Collision</dc:creator>
	</item><item>
		<title>By: teece</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X#499008</link>	
		<description>CC:  I made it hide the symlink on my machine, but I had to be careful.  I use tab-completion like mad -- by default, in the SetFile command, when I hit &apos;tab&apos; to complete the symlink name, it automatically added the &apos;/&apos; to the end of the name.&lt;br&gt;
&lt;br&gt;
That slash can&apos;t be there -- if it is, SetFile follows the symlink and sets the folder it pointed to as hidden.  But if the slash is left off, the symlink itself was set as hidden.&lt;br&gt;
&lt;br&gt;
That seems like mildly buggy behavior to me (I mean -P says explicitly not to follow symlinks), but hey ... *shrug*</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31833-499008</guid>
		<pubDate>Tue, 31 Jan 2006 21:55:35 -0800</pubDate>
		<dc:creator>teece</dc:creator>
	</item><item>
		<title>By: Colloquial Collision</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X#499097</link>	
		<description>Now that makes sense. Thank you for your help.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31833-499097</guid>
		<pubDate>Wed, 01 Feb 2006 03:59:52 -0800</pubDate>
		<dc:creator>Colloquial Collision</dc:creator>
	</item><item>
		<title>By: Colloquial Collision</title>
		<link>http://ask.metafilter.com/31833/How-do-I-change-Developer-to-ApplicationsDeveloper-in-OS-X#583559</link>	
		<description>UPDATE 6 MAY 2006:&lt;br&gt;
&lt;br&gt;
This isn&apos;t a good idea after all.&lt;br&gt;
&lt;br&gt;
If you do this, don&apos;t plan on using DarwinPorts or Fink.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.31833-583559</guid>
		<pubDate>Sat, 06 May 2006 22:31:43 -0800</pubDate>
		<dc:creator>Colloquial Collision</dc:creator>
	</item>
	</channel>
</rss>
