This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| set -e | |
| PROGNAME=$(basename $0) | |
| WORKING_DIR=$(cd -P -- "$(dirname -- "$0")" && pwd -P) | |
| OLD_TITLE="DTStart" | |
| OLD_PACKAGE="old.package.name" | |
| die() { | |
| echo "$PROGNAME: $*" >&2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # THIS HAS BECOME OBSOLETE. IN BUILD 14342 THIS IS SOLVED, PLEASE USE THAT BUILD INSTEAD (OR MORE RECENT ONES) | |
| # See https://github.com/Microsoft/BashOnWindows/issues/91#issuecomment-218379746 | |
| # Workaround to build ZSH on #BashOnUbuntuOnWindows. | |
| # See https://github.com/Microsoft/BashOnWindows/issues/91#issuecomment-208077623 | |
| # RUN EACH LINE INDEPENDENTLY. THIS IS NOT AN AUTOMATIC BASH SCRIPT. | |
| # Install dependencies | |
| apt-get install -y git-core gcc make autoconf yodl libncursesw5-dev texinfo checkinstall |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // Copyright 2015 Google Inc. All Rights Reserved. | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); | |
| // you may not use this file except in compliance with the License. | |
| // You may obtain a copy of the License at | |
| // | |
| // http://www.apache.org/licenses/LICENSE-2.0 | |
| // | |
| // Unless required by applicable law or agreed to in writing, software |