Fixing a few bugs

Change-Id: Ibc65ad1d41fca4a6244b246cd30428965f707227
diff --git a/make-osx-bundle.py b/make-osx-bundle.py
index 3ce189d..91a578b 100755
--- a/make-osx-bundle.py
+++ b/make-osx-bundle.py
@@ -226,9 +226,9 @@
       Copy needed config files into our bundle.
     '''
     print ' * Copying needed config files'
-    rsrcpath = os.path.join(self.bundle, 'Contents', 'etc')
+    rsrcpath = os.path.join(self.bundle, 'Contents', 'etc', 'ndn')
     if not os.path.exists(rsrcpath):
-      os.mkdir(rsrcpath)
+      os.makedirs(rsrcpath)
 
     # Copy resources already in the bundle
     for rsrc in rsrcs: