mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
Adding to check for armv6l so Debian package can be built on Raspberry Pi
This commit is contained in:
parent
d2be460d7c
commit
ec484dba12
2
debian/rules
vendored
2
debian/rules
vendored
@ -20,3 +20,5 @@ override_dh_auto_install:
|
|||||||
configure_config:
|
configure_config:
|
||||||
if [ $(shell uname -m) = 'x86_64' ]; then echo "1\n2\n" | ./configure; fi
|
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) = 'i686' ]; then echo "1\n1\n" | ./configure; fi
|
||||||
|
if [ $(shell uname -m) = 'armv6l' ]; then echo "1\n1\n" | ./configure; fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user