fix imap executable permission

This commit is contained in:
crazywhalecc 2024-01-07 00:37:21 +08:00 committed by Jerry Ma
parent cb5e13e39a
commit 54ba41d1b3
2 changed files with 8 additions and 0 deletions

View File

@ -47,6 +47,10 @@ class imap extends LinuxLibraryBase
shell()->cd($this->source_dir)
->exec('make clean')
->exec('touch ip6')
->exec('chmod +x tools/an')
->exec('chmod +x tools/ua')
->exec('chmod +x src/osdep/unix/drivers')
->exec('chmod +x src/osdep/unix/mkauths')
->exec(
"yes | make slx {$ssl_options}"
);

View File

@ -50,6 +50,10 @@ class imap extends MacOSLibraryBase
shell()->cd($this->source_dir)
->exec('make clean')
->exec('touch ip6')
->exec('chmod +x tools/an')
->exec('chmod +x tools/ua')
->exec('chmod +x src/osdep/unix/drivers')
->exec('chmod +x src/osdep/unix/mkauths')
->exec(
"yes | EXTRACFLAGS='-Wimplicit-function-declaration -include $(xcrun --show-sdk-path)/usr/include/poll.h -include $(xcrun --show-sdk-path)/usr/include/time.h -include $(xcrun --show-sdk-path)/usr/include/utime.h' make osx {$ssl_options}"
);