[haiku-commits] haiku: hrev49749 - /

  • From: jscipione@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 3 Nov 2015 01:31:45 +0100 (CET)

hrev49749 adds 2 changesets to branch 'master'
old head: 6abbd31061820555a28223756f80122b422ae7a0
new head: 299467d2a31d3d4a92a793914f9b76c10497cce3
overview:
http://cgit.haiku-os.org/haiku/log/?qt=range&q=299467d2a31d+%5E6abbd3106182

----------------------------------------------------------------------------

7a05e252c837: configure: Update the case-sensitive FS error text

Remove the second line so that it fits in 80 chars and the sentence does not
end in a proposition; reads better.

299467d2a31d: configure: remove set -e

This was added in hrev47174 but isn't needed. (confirmed with jessicah)

the -e flag was causing the script to exit when it encountered an error
instead of allowing us to print an error message and exit ourselves.
I accidentially tried to compile Haiku on a case-insensitive FS and
tripped over this.

The configure script should print an error message if you try to configure
on a case-insensitive FS once again.

[ John Scipione <jscipione@xxxxxxxxx> ]

----------------------------------------------------------------------------

1 file changed, 1 insertion(+), 5 deletions(-)
configure | 6 +-----

############################################################################

Commit: 7a05e252c837a987619b184f68ae16c07f12559d
URL: http://cgit.haiku-os.org/haiku/commit/?id=7a05e252c837
Author: John Scipione <jscipione@xxxxxxxxx>
Date: Mon Nov 2 23:55:41 2015 UTC

configure: Update the case-sensitive FS error text

Remove the second line so that it fits in 80 chars and the sentence does not
end in a proposition; reads better.

----------------------------------------------------------------------------

diff --git a/configure b/configure
index aa9477d..cab598f 100755
--- a/configure
+++ b/configure
@@ -658,8 +658,7 @@ rmdir haikuCaseTest haikucasetest 2>/dev/null
if [ $caseInsensitive != 0 ]; then
echo "You need a case-sensitive file-system to build Haiku."
if [ $HOST_PLATFORM = "darwin" ]; then
- echo "You can create a case-sensitive disk image using Disk
Utility and use"
- echo "it to store the Haiku sources on."
+ echo "You can create a case-sensitive disk image using Disk
Utility."
fi
exit 1
fi

############################################################################

Revision: hrev49749
Commit: 299467d2a31d3d4a92a793914f9b76c10497cce3
URL: http://cgit.haiku-os.org/haiku/commit/?id=299467d2a31d
Author: John Scipione <jscipione@xxxxxxxxx>
Date: Mon Nov 2 23:57:01 2015 UTC

configure: remove set -e

This was added in hrev47174 but isn't needed. (confirmed with jessicah)

the -e flag was causing the script to exit when it encountered an error
instead of allowing us to print an error message and exit ourselves.
I accidentially tried to compile Haiku on a case-insensitive FS and
tripped over this.

The configure script should print an error message if you try to configure
on a case-insensitive FS once again.

----------------------------------------------------------------------------

diff --git a/configure b/configure
index cab598f..76bd602 100755
--- a/configure
+++ b/configure
@@ -2,9 +2,6 @@
#
# configure [ <options> ]

-# set flag to exit script when exit command is executed
-set -e
-
# usage
#
# Prints usage.


Other related posts:

  • » [haiku-commits] haiku: hrev49749 - / - jscipione