From: Peter Palfrader Date: Sat, 2 Feb 2008 14:11:25 +0000 (+0000) Subject: Work around fig2dev failing to build the images on mipsel like we do on sparc X-Git-Tag: tor-0.2.0.19-alpha~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1f9c87db36c2cbc55bd2af736ecc034df82b935;p=thirdparty%2Ftor.git Work around fig2dev failing to build the images on mipsel like we do on sparc and s390. svn:r13357 --- diff --git a/debian/changelog b/debian/changelog index 53a337b8f2..4f21bd3543 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +tor (0.2.0.18-alpha+svn-1) experimental; urgency=low + + * 13351 + log + * + * Work around fig2dev failing to build the images on mipsel like we do on + sparc and s390. + + -- Peter Palfrader Sat, 2 Feb 2008 15:10:48 +0100 + tor (0.2.0.18-alpha-1) experimental; urgency=low * postinst: Remove the check that requires the debian-tor user diff --git a/debian/rules b/debian/rules index 468b985818..e08117d3bd 100755 --- a/debian/rules +++ b/debian/rules @@ -101,7 +101,8 @@ build-stamp: config.status # the hexdumps were built using something like # perl -e 'while (<>) { print unpack ("H*", $_); }' interaction.pdf | fold > hexdump-interaction.pdf if [ "$(DEB_BUILD_GNU_TYPE)" = "s390-linux-gnu" ] || \ - [ "$(DEB_BUILD_GNU_TYPE)" = "sparc-linux-gnu" ]; then \ + [ "$(DEB_BUILD_GNU_TYPE)" = "sparc-linux-gnu" ] || \ + [ "$(DEB_BUILD_GNU_TYPE)" = "mipsel-linux" ]; then \ cd doc/design-paper; \ fig2dev -L pdf cell-struct.fig cell-struct.pdf || \ ( echo "** Using shipped pdf file because fig2dev failed"; \