Skip to content

Commit

Permalink
macvim: fix build with Xcode10
Browse files Browse the repository at this point in the history
  • Loading branch information
kencu committed Oct 10, 2018
1 parent ff6a014 commit f830225
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions editors/MacVim/Portfile
Expand Up @@ -75,6 +75,11 @@ configure.args --enable-gui=macvim \
# Old pre-compiled headers could influence build, #26723 # Old pre-compiled headers could influence build, #26723
build.args XCODEFLAGS="CACHE_ROOT=${workpath}/caches" build.args XCODEFLAGS="CACHE_ROOT=${workpath}/caches"


# this port does not build with the new xcode build system at present
if {[vercmp ${xcodeversion} 10.0] >= 0} {
build.args XCODEFLAGS="CACHE_ROOT=${workpath}/caches -UseNewBuildSystem=NO"
}

destroot { destroot {
copy ${worksrcpath}/src/MacVim/build/Release/MacVim.app ${destroot}${applications_dir} copy ${worksrcpath}/src/MacVim/build/Release/MacVim.app ${destroot}${applications_dir}
ln -s ${applications_dir}/MacVim.app/Contents/bin/mvim ${destroot}${prefix}/bin/mvim ln -s ${applications_dir}/MacVim.app/Contents/bin/mvim ${destroot}${prefix}/bin/mvim
Expand Down

0 comments on commit f830225

Please sign in to comment.