From 04ce38ec85abdaac0fff520893f0882f677cda91 Mon Sep 17 00:00:00 2001 From: Carlos Maddela Date: Thu, 5 Jan 2017 07:05:26 +1100 Subject: [PATCH] Backup and restore mutable files to allow multiple builds. --- debian/rules | 11 +++++++++++ debian/source/options | 1 + 2 files changed, 12 insertions(+) create mode 100644 debian/source/options diff --git a/debian/rules b/debian/rules index ac84ef9..fa26510 100755 --- a/debian/rules +++ b/debian/rules @@ -6,16 +6,27 @@ include /usr/share/dpkg/buildflags.mk export DEB_CFLAGS_MAINT_APPEND = $(CPPFLAGS) -Wall -Wno-deprecated-declarations -pedantic export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed +MUTABLE_FILES := build.h $(wildcard locale/*.po) + %: dh $@ override_dh_auto_configure: + for f in $(MUTABLE_FILES); do \ + cp -an $$f $$f.orig; \ + done dh_auto_configure -- \ --localedir=\$${prefix}/share/locale \ --docdir=\$${prefix}share/doc \ --docsubdir=dvdisaster-doc/html \ --with-embedded-src-path=no +override_dh_clean: + dh_clean -X.orig + for f in $(MUTABLE_FILES); do \ + test ! -f $$f.orig || mv -f $$f.orig $$f; \ + done + override_dh_auto_build-arch: make all diff --git a/debian/source/options b/debian/source/options new file mode 100644 index 0000000..0266228 --- /dev/null +++ b/debian/source/options @@ -0,0 +1 @@ +no-unapply-patches