diff options
author | agc <agc@pkgsrc.org> | 2008-05-09 18:35:35 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2008-05-09 18:35:35 +0000 |
commit | 8dd14e552e8407a5ee3a5020e8f40fbcd62c4294 (patch) | |
tree | 5ffa04728e4363952252e8b6617a67716cecdd36 /bootstrap | |
parent | 189d58e58fe18517a09f637a563197ec8f75c25f (diff) | |
download | pkgsrc-8dd14e552e8407a5ee3a5020e8f40fbcd62c4294.tar.gz |
It's been possible to use case-insensitive file systems for Mac OS X for
about a year now. In celebration of this, remove the check and error message
when ensuring a case- sensitive filesystem on Mac OS X.
Keep the check for Interix.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/bootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap index 21595192f94..6294e907da9 100755 --- a/bootstrap/bootstrap +++ b/bootstrap/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.123 2008/04/30 03:14:55 minskim Exp $ +# $NetBSD: bootstrap,v 1.124 2008/05/09 18:35:35 agc Exp $ # # # Copyright (c) 2001-2002 Alistair G. Crooks. All rights reserved. @@ -774,7 +774,7 @@ fi # make sure we're using a case-sensitive file system if [ $ignorecasecheck = "no" ]; then case "$opsys" in -Darwin|Interix) +Interix) echo_msg "Testing file system case sensitivity" for fs in "$prefix"; do testdir="pkgsrc-REQUIRES-case-SENSITIVE-filesystem" |