diff options
author | Michael Vogt <mvo@debian.org> | 2014-01-04 11:15:28 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-01-04 11:15:28 +0100 |
commit | c93d14fc05b50a8ee8bb7804579c2912f34c676b (patch) | |
tree | 1f45c51bd8d3ab33de2610f1663b3ec8e5f49c02 /apt-pkg/contrib/fileutl.cc | |
parent | e2fa0aa64d2249129543f82a213043d96469be1c (diff) | |
parent | 23bd09778261c945b460b46d855b1a6ef998cfd8 (diff) |
Merge branch 'debian/sid' into feature/source-deb822
Diffstat (limited to 'apt-pkg/contrib/fileutl.cc')
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 7fbe4d604..efbf7aaf4 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -1827,3 +1827,20 @@ std::vector<std::string> Glob(std::string const &pattern, int flags) return result; } /*}}}*/ + +std::string GetTempDir() +{ + const char *tmpdir = getenv("TMPDIR"); + +#ifdef P_tmpdir + if (!tmpdir) + tmpdir = P_tmpdir; +#endif + + // check that tmpdir is set and exists + struct stat st; + if (!tmpdir || strlen(tmpdir) == 0 || stat(tmpdir, &st) != 0) + tmpdir = "/tmp"; + + return string(tmpdir); +} |