Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaiyuu Nobori <da.git@softether.co.jp>2014-02-10 10:42:46 +0400
committerDaiyuu Nobori <da.git@softether.co.jp>2014-02-10 10:42:46 +0400
commit4abd47fd9a7a5fcc11310fa391d33155d1b5937c (patch)
tree8baceb9de9fe1d8041a4f6d5d13e1a8ae0aeec3f
parentd2be460d7c4e6594da6a469d0691b607d1e469bd (diff)
parentec484dba12cb5147057d0c671721b2ff216e7586 (diff)
Merge pull request #25 from hsaito/master
Adding to check for armv6l so Debian package can be built on Raspberry P...
-rwxr-xr-xdebian/rules2
1 files changed, 2 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules
index 4eece040..8026117e 100755
--- a/debian/rules
+++ b/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
+