diff options
author | Simon Quigley <tsimonq2@ubuntu.com> | 2017-08-16 04:34:32 -0500 |
---|---|---|
committer | Simon Quigley <tsimonq2@ubuntu.com> | 2017-08-16 04:34:32 -0500 |
commit | aeae853de69e122112f11fe94c8255cf51cd7467 (patch) | |
tree | 4f10441ef442759f35a421fc243de93bf27f9d48 /debian/patches/make-build-reproducable.patch | |
parent | 82306ca849c0710209e5a39754f446d0335a276d (diff) |
Update to latest upstream Git commit (0ca8d0) so that we can drop all patches, as they have all been applied upstream.
Diffstat (limited to 'debian/patches/make-build-reproducable.patch')
-rw-r--r-- | debian/patches/make-build-reproducable.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/debian/patches/make-build-reproducable.patch b/debian/patches/make-build-reproducable.patch deleted file mode 100644 index 5ad40597..00000000 --- a/debian/patches/make-build-reproducable.patch +++ /dev/null @@ -1,31 +0,0 @@ -Description: Make HardInfo reproducable. - This patch removes the "Compiled on:" text when running "hardinfo --version" - because it does not show any useful information at the moment, and causes - HardInfo to fail reproducibility tests. -Author: Simon Quigley <tsimonq2@ubuntu.com> -Bug-Debian: https://bugs.debian.org/833379 -Reviewed-by: Mattia Rizzolo <mattia@debian.org> -Last-Update: 2017-07-14 ---- a/config.h.cmake -+++ b/config.h.cmake -@@ -5,9 +5,6 @@ - - #define ARCH "ARCH_@HARDINFO_ARCH@" - #define OS "@HARDINFO_OS@" --#define PLATFORM OS "-" ARCH --#define KERNEL "@CMAKE_SYSTEM_VERSION@" --#define HOSTNAME "" - #define ARCH_@HARDINFO_ARCH@ - - #define LIBDIR "@CMAKE_INSTALL_LIBDIR@" ---- a/hardinfo/hardinfo.c -+++ b/hardinfo/hardinfo.c -@@ -55,7 +55,7 @@ int main(int argc, char **argv) - " Compiled on: %s %s (%s)\n"), - RELEASE ? _("Yes") : "No (" VERSION ")", ARCH, - ENABLE_BINRELOC ? _("Yes") : _("No"), -- PREFIX, LIBPREFIX, PLATFORM, KERNEL, HOSTNAME); -+ PREFIX, LIBPREFIX, "", "", ""); - - DEBUG(" Debugging is enabled."); - |