aboutsummaryrefslogtreecommitdiffstats
path: root/debian/patches/02-reproducible-build.patch
diff options
context:
space:
mode:
authorJonathan McCrohan <jmccrohan@gmail.com>2018-03-19 01:07:04 +0000
committerJonathan McCrohan <jmccrohan@gmail.com>2018-03-19 01:07:04 +0000
commitf9ad370ca6de720e1120b12eb3964bf4599ec273 (patch)
tree649496bdc3d438805a2688f3b9d133f601772798 /debian/patches/02-reproducible-build.patch
parente5837c658b65cea29dc0c96811dda305382a8262 (diff)
downloadwavemon-f9ad370ca6de720e1120b12eb3964bf4599ec273.tar.gz
New upstream release (0.8.2)
Diffstat (limited to 'debian/patches/02-reproducible-build.patch')
-rw-r--r--debian/patches/02-reproducible-build.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/debian/patches/02-reproducible-build.patch b/debian/patches/02-reproducible-build.patch
deleted file mode 100644
index f583e36..0000000
--- a/debian/patches/02-reproducible-build.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Author: Reiner Herrmann <reiner@reiner-h.de>
-Description: Sort object files for deterministic linking order
-
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -21,7 +21,7 @@
- MAIN = @PACKAGE_NAME@.c
- HEADERS = $(wildcard *.h)
- PURESRC = $(filter-out $(MAIN),$(wildcard *.c))
--OBJS = $(PURESRC:.c=.o)
-+OBJS = $(sort $(PURESRC:.c=.o))
-
- %.o: %.c $(HEADERS)
- @echo ' CC ' $<