summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2010-07-27 20:45:03 +0300
committerLasse Collin <lasse.collin@tukaani.org>2010-07-27 20:45:03 +0300
commit507a4a4dea1e5462f12f7ed4b076c34e02054a38 (patch)
treeaeec6ac73200a4729d639e6e75f0c63600293470 /windows
parentb1cbfd40f049a646a639eb78a3e41e9e3ef73339 (diff)
downloadxz-507a4a4dea1e5462f12f7ed4b076c34e02054a38.tar.gz
Windows: build.sh is a bash script so name it correctly.
Diffstat (limited to 'windows')
-rw-r--r--windows/INSTALL-Windows.txt6
-rw-r--r--windows/build.bash (renamed from windows/build.sh)6
2 files changed, 6 insertions, 6 deletions
diff --git a/windows/INSTALL-Windows.txt b/windows/INSTALL-Windows.txt
index b5ac963..b3ed93e 100644
--- a/windows/INSTALL-Windows.txt
+++ b/windows/INSTALL-Windows.txt
@@ -118,13 +118,13 @@ Building XZ Utils
cd /c/devel
tar xzf xz-5.x.x.tar.gz
cd xz-5.x.x
- sh windows/build.sh
+ bash windows/build.bash
If you used some other directory than C:\devel\tools for the build
- tools, edit the variables near the beginning of build.sh first.
+ tools, edit the variables near the beginning of build.bash first.
If you want to build manually, read the buildit() function in
- build.sh. Look especially at the latter configure invocation.
+ build.bash. Look especially at the latter configure invocation.
Be patient. Running configure and other scripts used by the build
system is (very) slow under Windows.
diff --git a/windows/build.sh b/windows/build.bash
index 665951b..e675435 100644
--- a/windows/build.sh
+++ b/windows/build.bash
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
#
###############################################################################
#
@@ -48,9 +48,9 @@ esac
# This script can be run either at the top-level directory of the package
# or in the same directory containing this script.
-if [ ! -f windows/build.sh ]; then
+if [ ! -f windows/build.bash ]; then
cd ..
- if [ ! -f windows/build.sh ]; then
+ if [ ! -f windows/build.bash ]; then
echo "You are in a wrong directory." >&2
exit 1
fi