From a6197af85a0db925eb0b61471e9737ad286d27d6 Mon Sep 17 00:00:00 2001
From: Simon Quigley <simon@tsimonq2.net>
Date: Wed, 18 Dec 2024 17:16:37 -0600
Subject: [PATCH] Be hacky and include the explicit path to archive.h due to a
 conflicting header in launchpadlib

---
 cpp/common.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cpp/common.cpp b/cpp/common.cpp
index aa00e16..af7e5b2 100644
--- a/cpp/common.cpp
+++ b/cpp/common.cpp
@@ -14,8 +14,8 @@
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 #include "common.h"
-#include <archive.h>
-#include <archive_entry.h>
+#include "/usr/include/archive.h"
+#include "/usr/include/archive_entry.h"
 #include <iostream>
 #include <fstream>
 #include <sstream>