1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-13 07:13:00 +03:00

Adding to check for armv6l so Debian package can be built on Raspberry Pi

This commit is contained in:
Hideki Saito 2014-02-09 22:26:55 -08:00
parent d2be460d7c
commit ec484dba12

2
debian/rules vendored
View File

@ -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