aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-20 22:21:41 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-20 22:21:41 +0000
commita025270b50a0c1758617cb9aa7b94b06cf876b1f (patch)
tree1abea93a775a74b567d8711dbda4f1a645c548e9
parent7d05563324e538a377ba12ca62b2b5b0fbbba547 (diff)
Cygwin doesn't like .. through a link, so drop the ..
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19076 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/System/Cygwin/DynamicLibrary.cpp2
-rw-r--r--lib/System/Cygwin/MappedFile.cpp2
-rw-r--r--lib/System/Cygwin/Memory.cpp2
-rw-r--r--lib/System/Cygwin/Path.cpp2
-rw-r--r--lib/System/Cygwin/Process.cpp2
-rw-r--r--lib/System/Cygwin/Program.cpp2
-rw-r--r--lib/System/Cygwin/Signals.cpp2
-rw-r--r--lib/System/Cygwin/SysConfig.cpp2
-rw-r--r--lib/System/Cygwin/TimeValue.cpp2
9 files changed, 9 insertions, 9 deletions
diff --git a/lib/System/Cygwin/DynamicLibrary.cpp b/lib/System/Cygwin/DynamicLibrary.cpp
index 68644880a5..35cb637f03 100644
--- a/lib/System/Cygwin/DynamicLibrary.cpp
+++ b/lib/System/Cygwin/DynamicLibrary.cpp
@@ -12,7 +12,7 @@
//===----------------------------------------------------------------------===//
// Include the generic unix implementation
-#include "../Unix/DynamicLibrary.cpp"
+#include "Unix/DynamicLibrary.cpp"
namespace llvm {
using namespace sys;
diff --git a/lib/System/Cygwin/MappedFile.cpp b/lib/System/Cygwin/MappedFile.cpp
index 09a05757fb..94338de2c4 100644
--- a/lib/System/Cygwin/MappedFile.cpp
+++ b/lib/System/Cygwin/MappedFile.cpp
@@ -13,6 +13,6 @@
//===----------------------------------------------------------------------===//
// Include the generic unix implementation
-#include "../Unix/MappedFile.cpp"
+#include "Unix/MappedFile.cpp"
// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab
diff --git a/lib/System/Cygwin/Memory.cpp b/lib/System/Cygwin/Memory.cpp
index 87d29dec46..39d87e29b0 100644
--- a/lib/System/Cygwin/Memory.cpp
+++ b/lib/System/Cygwin/Memory.cpp
@@ -13,7 +13,7 @@
//===----------------------------------------------------------------------===//
// Include the generic unix implementation
-#include "../Unix/Memory.cpp"
+#include "Unix/Memory.cpp"
#include "llvm/System/Process.h"
#include <sys/types.h>
#include <sys/mman.h>
diff --git a/lib/System/Cygwin/Path.cpp b/lib/System/Cygwin/Path.cpp
index 43dae2f982..b159b547ea 100644
--- a/lib/System/Cygwin/Path.cpp
+++ b/lib/System/Cygwin/Path.cpp
@@ -17,7 +17,7 @@
//===----------------------------------------------------------------------===//
// Include the generic Unix implementation
-#include "../Unix/Path.cpp"
+#include "Unix/Path.cpp"
namespace llvm {
using namespace sys;
diff --git a/lib/System/Cygwin/Process.cpp b/lib/System/Cygwin/Process.cpp
index 46bcbcc4fc..d1d8628915 100644
--- a/lib/System/Cygwin/Process.cpp
+++ b/lib/System/Cygwin/Process.cpp
@@ -12,7 +12,7 @@
//===----------------------------------------------------------------------===//
// Include the generic Unix implementation
-#include "../Unix/Process.cpp"
+#include "Unix/Process.cpp"
//===----------------------------------------------------------------------===//
//=== WARNING: Implementation here must contain only Cygwin specific code
diff --git a/lib/System/Cygwin/Program.cpp b/lib/System/Cygwin/Program.cpp
index 2de0c3b2ea..a521e20664 100644
--- a/lib/System/Cygwin/Program.cpp
+++ b/lib/System/Cygwin/Program.cpp
@@ -12,7 +12,7 @@
//===----------------------------------------------------------------------===//
// Include the generic Unix implementation
-#include "../Unix/Program.cpp"
+#include "Unix/Program.cpp"
//===----------------------------------------------------------------------===//
//=== WARNING: Implementation here must contain only Cygwin specific code
diff --git a/lib/System/Cygwin/Signals.cpp b/lib/System/Cygwin/Signals.cpp
index 8dc8322186..eb514167d6 100644
--- a/lib/System/Cygwin/Signals.cpp
+++ b/lib/System/Cygwin/Signals.cpp
@@ -12,7 +12,7 @@
//===----------------------------------------------------------------------===//
// Include the generic unix implementation
-#include "../Unix/Signals.cpp"
+#include "Unix/Signals.cpp"
namespace llvm {
using namespace sys;
diff --git a/lib/System/Cygwin/SysConfig.cpp b/lib/System/Cygwin/SysConfig.cpp
index a42cddcdcc..a32a701cf9 100644
--- a/lib/System/Cygwin/SysConfig.cpp
+++ b/lib/System/Cygwin/SysConfig.cpp
@@ -12,7 +12,7 @@
//===----------------------------------------------------------------------===//
// Include the generic unix implementation
-#include "../Unix/SysConfig.cpp"
+#include "Unix/SysConfig.cpp"
namespace llvm {
using namespace sys;
diff --git a/lib/System/Cygwin/TimeValue.cpp b/lib/System/Cygwin/TimeValue.cpp
index 85a0e4d4dc..7a31b0b03f 100644
--- a/lib/System/Cygwin/TimeValue.cpp
+++ b/lib/System/Cygwin/TimeValue.cpp
@@ -12,7 +12,7 @@
//===----------------------------------------------------------------------===//
// Include the generic Unix implementation
-#include "../Unix/TimeValue.cpp"
+#include "Unix/TimeValue.cpp"
namespace llvm {
using namespace sys;