On 5/7/2015 3:32 PM, Jens Axboe wrote:
Honestly, that should just use PATH_MAX. I'll make that change instead of adding this patch
Thanks. And one last patch, to fix the Windows installer build this time. -- Bruce
>From 452f548cd17d13e6fe0047a82204f83202ea9fbe Mon Sep 17 00:00:00 2001 From: Bruce Cran <bruce.cran@xxxxxxxxx> Date: Thu, 7 May 2015 16:54:37 -0600 Subject: [PATCH] Fix Windows installer build: LICENSE is now MORAL-LICENSE --- os/windows/install.wxs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/os/windows/install.wxs b/os/windows/install.wxs index ba58b92..f392606 100755 --- a/os/windows/install.wxs +++ b/os/windows/install.wxs @@ -40,7 +40,7 @@ <File Id="COPYING" Name="COPYING.txt" Source="..\..\COPYING"/> </Component> <Component> - <File Id="LICENSE" Name="LICENSE.txt" Source="..\..\LICENSE"/> + <File Id="MORAL_LICENSE" Name="MORAL-LICENSE.txt" Source="..\..\MORAL-LICENSE"/> </Component> <Directory Id="examples" Name="examples"/> </Directory> @@ -54,7 +54,7 @@ <ComponentRef Id="README"/> <ComponentRef Id="REPORTING_BUGS"/> <ComponentRef Id="COPYING"/> - <ComponentRef Id="LICENSE"/> + <ComponentRef Id="MORAL_LICENSE"/> <ComponentGroupRef Id="examples"/> </Feature> -- 1.9.5.msysgit.1