summaryrefslogtreecommitdiff
path: root/debian
diff options
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog7
-rwxr-xr-xdebian/rules3
2 files changed, 9 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 56023e476..0ddc1c97a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+unity (7.1.2+14.04.20131106.1-0ubuntu2) trusty; urgency=medium
+
+ * Disable errors upon deprecated-warnings.
+ * No change rebuild against nux with libglew1.10.
+
+ -- Dimitri John Ledkov <xnox@ubuntu.com> Thu, 02 Jan 2014 16:14:05 +0000
+
unity (7.1.2+14.04.20131106.1-0ubuntu1) trusty; urgency=low
[ Ted Gould ]
diff --git a/debian/rules b/debian/rules
index 93150071f..d708540d3 100755
--- a/debian/rules
+++ b/debian/rules
@@ -9,7 +9,8 @@ gles2_architectures := armel armhf
DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ')
-CFLAGS=$(shell echo $$CFLAGS | sed -e 's/\-Wall//')
+export CFLAGS=$(shell echo $$CFLAGS | sed -e 's/\-Wall//') -Wno-error=deprecated-declarations
+export CXXFLAGS=$(shell echo $$CXXFLAGS | sed -e 's/\-Wall//') -Wno-error=deprecated-declarations
# http://ccache.samba.org/manual.html#_precompiled_headers
CCACHE_SLOPPINESS=time_macros