Replace first sys.path entry with the directory where the script lives
(Just).
diff --git a/Mac/Tools/macfreeze/macmodulefinder.py b/Mac/Tools/macfreeze/macmodulefinder.py
index d87ca9b..fd3ac74 100644
--- a/Mac/Tools/macfreeze/macmodulefinder.py
+++ b/Mac/Tools/macfreeze/macmodulefinder.py
@@ -62,7 +62,11 @@
 			module_files.append(m)
 		else:
 			modules.append(m)
-	path = extra_path + sys.path[:]
+    # collect all modules of the program
+	path = sys.path[:]
+	dir = os.path.dirname(program)
+	path[0] = dir	# "current dir"
+	path = extra_path + path
 	#
 	# Create the module finder and let it do its work
 	#