Fail to build on Windows 7 (32 bits)

Michael Stahl mstahl at redhat.com
Tue Aug 18 04:12:48 PDT 2015


On 17.08.2015 21:40, julien2412 wrote:
> Michael Stahl-2 wrote
>> On 16.08.2015 10:13, julien2412 wrote:
>>> I updated my local repo (still master sources), I still get the same.
>>
>> what does this say
>>
>> find workdir/UnpackedTarball/nss -name nspr4.lib
>>
>> perhaps the build of nss failed, and the
>> workdir/UnpackedTarball/nss/nss/build.log has some details?
> 
> $ find workdir/UnpackedTarball/nss -name nspr4.lib
> workdir/UnpackedTarball/nss/nspr/out/pr/src/nspr4.lib
> 
> Here's the build log of nss:
> build_nss_log.txt
> <http://nabble.documentfoundation.org/file/n4157542/build_nss_log.txt>  

no idea how that can happen...

and if it's an anti-virus problem i'd suspect some other error than file
not found?

what does it print in the log with the following patch

diff --git a/external/nss/nsinstall.py b/external/nss/nsinstall.py
index 31b3de3..a704761
--- a/external/nss/nsinstall.py
+++ b/external/nss/nsinstall.py
@@ -133,6 +133,8 @@ def nsinstall(argv):
   else:
     # we're supposed to copy files
     def handleTarget(srcpath, targetpath):
+      print("getcwd \"" + os.getcwd() + "\"")
+      print("handleTarget: \"" + srcpath + "\" -> \"" + targetpath +  "\"")
       if os.path.isdir(srcpath):
         if not os.path.exists(targetpath):
           os.mkdir(targetpath)
@@ -161,4 +163,6 @@ def nsinstall(argv):
   return 0

 if __name__ == '__main__':
+  print("nsinstall.py: getcwd \"" + os.getcwd() + "\"")
+  print(sys.argv)
   sys.exit(nsinstall(sys.argv[1:]))





More information about the LibreOffice mailing list