dinhvh / libetpan

Mail Framework for C Language
www.etpan.org
Other
609 stars 283 forks source link

Compiling w/in Xcode make scripts fail when directory tree has a folder name w/ a space character #422

Open mediastew opened 1 year ago

mediastew commented 1 year ago

Trying to compile MailCore2 on Xcode 14.1 Beta. I don't think the beta nor 14.1 plays any part in this. When compiling MailCore libetpan failed to find its includes. Digging into it I noticed the failure happening when the make script within the build order failed and the error showed that my folder tree leading up to it was getting split at a space character. "/Users/abc/Projects Build/MailCore2" would show only "/Users/abc/Projects as failing to make".

After realizing the issue and moving MailCore2 (and hence libetpan) to a folder structure without and spaces within the names, it built just fine.

ghr1234 commented 9 months ago

Wow! That's why I could not build it in 14.3.1 on MacOS 13.5.2! Thank you so much for posting this.