From 88918e9eb3e65645fddd0f5f850795ce3fec25df Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Thu, 2 Jul 2020 23:34:07 +0200 Subject: [build] fixed a build issue (on 'ant dist') on windows. apparently on windows symlinking requires admin rights because ????? This can be fixed with an explicit update to group policies, which I can't assume anybody working on lombok is going to actually do. /bin/ln in msysgit just copies (interesting choice). I could write a mechanism that tries /bin/ln and if not there, try instead, either in the build scripts or in ivyplusplus, but that's way too much effort to avoid a 2MB copy. So, for now, we just copy... if more symlinking is to be done later, we'll revisit, though. copying is such a silly waste of time, slowing down the build for no reason. --- buildScripts/compile.ant.xml | 2 +- buildScripts/maven.ant.xml | 4 ++-- buildScripts/setup.ant.xml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'buildScripts') diff --git a/buildScripts/compile.ant.xml b/buildScripts/compile.ant.xml index a68d6dc1..0bcc55bb 100644 --- a/buildScripts/compile.ant.xml +++ b/buildScripts/compile.ant.xml @@ -294,7 +294,7 @@ lombok.launch.AnnotationProcessorHider$ClaimingProcessor,isolating - + diff --git a/buildScripts/maven.ant.xml b/buildScripts/maven.ant.xml index 329eacec..dcba2ccb 100644 --- a/buildScripts/maven.ant.xml +++ b/buildScripts/maven.ant.xml @@ -37,7 +37,7 @@ This buildfile is part of projectlombok.org. It makes maven-compatible repositor - + @@ -48,7 +48,7 @@ This buildfile is part of projectlombok.org. It makes maven-compatible repositor - + diff --git a/buildScripts/setup.ant.xml b/buildScripts/setup.ant.xml index c72517c8..d6713222 100644 --- a/buildScripts/setup.ant.xml +++ b/buildScripts/setup.ant.xml @@ -36,7 +36,7 @@ This buildfile is part of projectlombok.org. It sets up the build itself. - + Your ssh.configuration file is corrupted; delete it and rerun this script. -- cgit