Guest User

Untitled

a guest
Mar 7th, 2018
453
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. commit cc878e32d25c755d953af9d95ca3e9677b3ffdb0
  2. Author: Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
  3. Date: Tue Jun 2 15:33:11 2009 +0200
  4.  
  5. 2009-06-02 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
  6.  
  7. Rubber-stamped by Simon Hausmann.
  8.  
  9. Use File::Spec->tmpdir instead of hardcoded paths for tempfile() dir
  10.  
  11. This fixes the Windows-build if the user does not have a /tmp directory.
  12.  
  13. diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
  14. index dfbf00c..ca5e537 100644
  15. --- a/JavaScriptCore/ChangeLog
  16. +++ b/JavaScriptCore/ChangeLog
  17. @@ -1,3 +1,13 @@
  18. +2009-06-02 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
  19. +
  20. + Rubber-stamped by Simon Hausmann.
  21. +
  22. + Use File::Spec->tmpdir instead of hardcoded paths for tempfile() dir
  23. +
  24. + This fixes the Windows-build if the user does not have a /tmp directory.
  25. +
  26. + * pcre/dftables:
  27. +
  28. 2009-06-02 Gavin Barraclough <barraclough@apple.com>
  29.  
  30. Reviewed by Oliver ">>" Hunt.
  31. diff --git a/JavaScriptCore/pcre/dftables b/JavaScriptCore/pcre/dftables
  32. index de2f5bb..8a2d140 100755
  33. --- a/JavaScriptCore/pcre/dftables
  34. +++ b/JavaScriptCore/pcre/dftables
  35. @@ -244,7 +244,7 @@ sub readHeaderValues()
  36.  
  37. my ($fh, $tempFile) = tempfile(
  38. basename($0) . "-XXXXXXXX",
  39. - DIR => ($ENV{'TMPDIR'} || "/tmp"),
  40. + DIR => File::Spec->tmpdir,
  41. SUFFIX => ".in",
  42. UNLINK => 0,
  43. );
  44. diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
  45. index dc93a97..30d8091 100644
  46. --- a/WebKitTools/ChangeLog
  47. +++ b/WebKitTools/ChangeLog
  48. @@ -1,3 +1,13 @@
  49. +2009-06-02 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
  50. +
  51. + Rubber-stamped by Simon Hausmann.
  52. +
  53. + Use File::Spec->tmpdir instead of hardcoded paths for tempfile() dir
  54. +
  55. + This fixes the Windows-build if the user does not have a /tmp directory.
  56. +
  57. + * Scripts/bisect-builds:
  58. +
  59. 2009-06-01 Yongjun Zhang <yongjun.zhang@nokia.com>>
  60.  
  61. Reviewed by Holger Freyther. Landed by Adam Barth.
  62. diff --git a/WebKitTools/Scripts/bisect-builds b/WebKitTools/Scripts/bisect-builds
  63. index b1c319f..34230a9 100755
  64. --- a/WebKitTools/Scripts/bisect-builds
  65. +++ b/WebKitTools/Scripts/bisect-builds
  66. @@ -209,7 +209,7 @@ sub createTempFile($)
  67.  
  68. my ($fh, $tempFile) = tempfile(
  69. basename($0) . "-XXXXXXXX",
  70. - DIR => ($ENV{'TMPDIR'} || "/tmp"),
  71. + DIR => File::Spec->tmpdir,
  72. SUFFIX => ".html",
  73. UNLINK => 0,
  74. );
Add Comment
Please, Sign In to add comment