summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-04-23 11:33:42 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2017-04-23 20:29:32 +0200
commit84d831ff7abefc222992b5457aa342e58c25fa73 (patch)
tree1d76933c160166082d8e2619c012254ab4f3af19 /scripts
parente040dd152081af6baa3c6888acd7dc1d63b84089 (diff)
add line endings to printf
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/prereq.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/prereq.sh b/scripts/prereq.sh
index e5e314b6a..e0d2aa002 100755
--- a/scripts/prereq.sh
+++ b/scripts/prereq.sh
@@ -22,18 +22,18 @@ printf " ---> $os $osver for build detected.\n"
rm -f foo
echo >FOO
if [ -e foo ]; then
- printf "ERROR: OpenADK cannot be built in a case-insensitive file system."
+ printf "ERROR: OpenADK cannot be built in a case-insensitive file system.\n"
case $os in
CYG*)
- printf "Building OpenADK on $os needs a small registry change."
- printf "http://cygwin.com/cygwin-ug-net/using-specialnames.html"
+ printf "Building OpenADK on $os needs a small registry change.\n"
+ printf "http://cygwin.com/cygwin-ug-net/using-specialnames.html\n"
;;
Darwin*)
- printf "Building OpenADK on $os needs a case-sensitive disk partition."
- printf "For Snow Leopard and above you can use diskutil to resize your existing disk."
- printf "Example: sudo diskutil resizeVolume disk0s2 90G 1 jhfsx adk 30G"
- printf "For older versions you might consider to use a disk image:"
- printf "hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 30g ~/openadk.dmg"
+ printf "Building OpenADK on $os needs a case-sensitive disk partition.\n"
+ printf "For Snow Leopard and above you can use diskutil to resize your existing disk.\n"
+ printf "Example: sudo diskutil resizeVolume disk0s2 90G 1 jhfsx adk 30G\n"
+ printf "For older versions you might consider to use a disk image:\n"
+ printf "hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 30g ~/openadk.dmg\n"
;;
esac
rm -f FOO