Browse Source

Merge pull request #25 from hsaito/master

Adding to check for armv6l so Debian package can be built on Raspberry P...
Daiyuu Nobori 11 years ago
parent
commit
4abd47fd9a
1 changed files with 2 additions and 0 deletions
  1. 2 0
      debian/rules

+ 2 - 0
debian/rules

@@ -20,3 +20,5 @@ override_dh_auto_install:
 configure_config:
 	if [ $(shell uname -m) = 'x86_64' ]; then echo "1\n2\n" | ./configure; fi
 	if [ $(shell uname -m) = 'i686' ]; then echo "1\n1\n" | ./configure; fi
+	if [ $(shell uname -m) = 'armv6l' ]; then echo "1\n1\n" | ./configure; fi
+