diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-06-22 13:22:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 13:22:44 +0100 |
commit | e7ad373d892d9040445011d47fe103922eb1abd6 (patch) | |
tree | f1b527800532479cb063fa96fb843e1a1b0248ec /launcher/FileSystem.cpp | |
parent | dea33a3c1d3936cc5cfdd0917673af84e94d70de (diff) | |
parent | 05a8232a8f1011f74b4d81d1ee5541eb01fe3ae1 (diff) | |
download | PrismLauncher-e7ad373d892d9040445011d47fe103922eb1abd6.tar.gz PrismLauncher-e7ad373d892d9040445011d47fe103922eb1abd6.tar.bz2 PrismLauncher-e7ad373d892d9040445011d47fe103922eb1abd6.zip |
Merge branch 'PrismLauncher:develop' into better-component-installation
Diffstat (limited to 'launcher/FileSystem.cpp')
-rw-r--r-- | launcher/FileSystem.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/FileSystem.cpp b/launcher/FileSystem.cpp index d98526df..835ad925 100644 --- a/launcher/FileSystem.cpp +++ b/launcher/FileSystem.cpp @@ -102,7 +102,7 @@ namespace fs = ghc::filesystem; #include <linux/fs.h> #include <sys/ioctl.h> #include <unistd.h> -#elif defined(Q_OS_MACOS) || defined(Q_OS_FREEBSD) || defined(Q_OS_OPENBSD) +#elif defined(Q_OS_MACOS) || defined(Q_OS_OPENBSD) #include <sys/attr.h> #include <sys/clonefile.h> #elif defined(Q_OS_WIN) @@ -1151,7 +1151,7 @@ bool clone_file(const QString& src, const QString& dst, std::error_code& ec) return false; } -#elif defined(Q_OS_MACOS) || defined(Q_OS_FREEBSD) || defined(Q_OS_OPENBSD) +#elif defined(Q_OS_MACOS) || defined(Q_OS_OPENBSD) if (!macos_bsd_clonefile(src_path, dst_path, ec)) { qDebug() << "failed macos_bsd_clonefile:"; @@ -1380,7 +1380,7 @@ bool linux_ficlone(const std::string& src_path, const std::string& dst_path, std return true; } -#elif defined(Q_OS_MACOS) || defined(Q_OS_FREEBSD) || defined(Q_OS_OPENBSD) +#elif defined(Q_OS_MACOS) || defined(Q_OS_OPENBSD) bool macos_bsd_clonefile(const std::string& src_path, const std::string& dst_path, std::error_code& ec) { |