pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/bootstrap We no longer need to check $pkgsrcdir for ca...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f76692a9b55d
branches:  trunk
changeset: 529282:f76692a9b55d
user:      schmonz <schmonz%pkgsrc.org@localhost>
date:      Wed May 30 01:42:59 2007 +0000

description:
We no longer need to check $pkgsrcdir for case-sensitivity.

XXX Is it time we stopped checking $prefix, too? IMO, yes.

diffstat:

 bootstrap/bootstrap |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r 0d52a85f9593 -r f76692a9b55d bootstrap/bootstrap
--- a/bootstrap/bootstrap       Wed May 30 01:23:38 2007 +0000
+++ b/bootstrap/bootstrap       Wed May 30 01:42:59 2007 +0000
@@ -1,6 +1,6 @@
 #! /bin/sh
 
-# $NetBSD: bootstrap,v 1.97 2007/05/23 04:20:36 schmonz Exp $
+# $NetBSD: bootstrap,v 1.98 2007/05/30 01:42:59 schmonz Exp $
 #
 #
 # Copyright (c) 2001-2002 Alistair G. Crooks.  All rights reserved.
@@ -651,12 +651,12 @@
 MANGRP=$group" > ${wrkdir}/Makefile.inc
 fi
 
-# make sure we're using a case-sensitive file system on Darwin
+# make sure we're using a case-sensitive file system
 if [ $ignorecasecheck = "no" ]; then
 case "$opsys" in
 Darwin|Interix)
        echo_msg "Testing file system case sensitivity"
-       for fs in "$prefix" "$pkgsrcdir"; do
+       for fs in "$prefix"; do
                testdir="pkgsrc-REQUIRES-case-SENSITIVE-filesystem"
                testdir_mangled="PKGSRC-requires-CASE-sensitive-FILESYSTEM"
                mkdir_p "$fs/$testdir" || die "can't verify filesystem ($fs) case-sensitivity"



Home | Main Index | Thread Index | Old Index