Skip to content

Commit

Permalink
Properly escape the XCODE path.
Browse files Browse the repository at this point in the history
This was causing problems on my system where Xcode is installed at
/Applications/Xcode 5.0/
  • Loading branch information
jverkoey committed Feb 15, 2014
1 parent cc78b12 commit 0cc8f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docsets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void DocSets::initialize()
"DOCSET_RESOURCES=$(DOCSET_CONTENTS)/Resources\n"
"DOCSET_DOCUMENTS=$(DOCSET_RESOURCES)/Documents\n"
"DESTDIR=~/Library/Developer/Shared/Documentation/DocSets\n"
"XCODE_INSTALL=$(shell xcode-select -print-path)\n"
"XCODE_INSTALL=\"$(shell xcode-select -print-path)\"\n"
"\n"
"all: docset\n"
"\n"
Expand Down

0 comments on commit 0cc8f6b

Please sign in to comment.