Archived
1
0

disable neochan by default

This commit is contained in:
Jeff Becker 2016-10-18 07:08:49 -04:00
parent cd803852e7
commit 3c4ad2fe50
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B
2 changed files with 6 additions and 6 deletions

View File

@ -1,8 +1,8 @@
#!/usr/bin/env bash #!/usr/bin/env bash
neochan="yes"
if [ "$1" == "--disable-neochan" ] ; then
neochan="no" neochan="no"
if [ "$1" == "--enable-neochan" ] ; then
neochan="yes"
fi fi
root=$(readlink -e "$(dirname "$0")") root=$(readlink -e "$(dirname "$0")")

View File

@ -25,12 +25,12 @@ ipfs="no"
rebuildjs="yes" rebuildjs="yes"
_next="" _next=""
unstable="no" unstable="no"
neochan="yes" neochan="no"
# check for build flags # check for build flags
for arg in "$@" ; do for arg in "$@" ; do
case $arg in case $arg in
"--disable-neochan") "--enable-neochan")
neochan="no" neochan="yes"
;; ;;
"--unstable") "--unstable")
unstable="yes" unstable="yes"