summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog1
-rw-r--r--debian/detect_arch.cpp8
-rw-r--r--debian/detect_arch.pro7
3 files changed, 1 insertions, 15 deletions
diff --git a/debian/changelog b/debian/changelog
index 63a5d3c..efd416a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -26,6 +26,7 @@ ultracopier (1.2.3.6-1) unstable; urgency=low
+ Fix URL to upstream tarballs (thanks Bart Martens).
* debian/compat:
+ Bump compat version.
+ * Remove debian/detect_arch.cpp and debian/detect_arch.pro.
-- Thomas Preud'homme <robotux@debian.org> Wed, 14 Feb 2018 22:54:13 +0000
diff --git a/debian/detect_arch.cpp b/debian/detect_arch.cpp
deleted file mode 100644
index 8a2ff5b..0000000
--- a/debian/detect_arch.cpp
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <iostream>
-#include <PlatformMacro.h>
-
-int main(void)
-{
- std::cout << ULTRACOPIER_PLATFORM_CODE;
- return 0;
-}
diff --git a/debian/detect_arch.pro b/debian/detect_arch.pro
deleted file mode 100644
index 504b46f..0000000
--- a/debian/detect_arch.pro
+++ /dev/null
@@ -1,7 +0,0 @@
-TEMPLATE = app
-
-TARGET = detect_arch
-target.path = .
-INSTALLS += target
-HEADERS += PlatformMacro.h
-SOURCES += debian/detect_arch.cpp