diff options
author | Peter Palfrader <peter@palfrader.org> | 2008-02-02 14:11:25 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2008-02-02 14:11:25 +0000 |
commit | b1f9c87db36c2cbc55bd2af736ecc034df82b935 (patch) | |
tree | f4b6180174fc29cd5eb032bd19776a9db0bb1c35 /debian/rules | |
parent | 91bac90310c41722d8a50ca9adf9006778f4d575 (diff) | |
download | tor-b1f9c87db36c2cbc55bd2af736ecc034df82b935.tar.gz tor-b1f9c87db36c2cbc55bd2af736ecc034df82b935.zip |
Work around fig2dev failing to build the images on mipsel like we do on sparc
and s390.
svn:r13357
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 3 |
1 files changed, 2 insertions, 1 deletions
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"; \ |