CVS commit: [netbsd-6] src/etc/root

2016-08-28 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Aug 28 10:32:23 UTC 2016

Modified Files:
src/etc/root [netbsd-6]: Makefile

Log Message:
Pull up following revision(s) (requested by uwe in ticket #1368):
etc/root/Makefile: revision 1.4
We don't need to include  to install a few config files
just  and  is enough.
Noticed because  sets LINKSMODE to BINMODE and that does
the wrong thing at least for unprivileged builds.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.3.8.1 src/etc/root/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/root/Makefile
diff -u src/etc/root/Makefile:1.3 src/etc/root/Makefile:1.3.8.1
--- src/etc/root/Makefile:1.3	Fri Feb  5 09:44:23 2010
+++ src/etc/root/Makefile	Sun Aug 28 10:32:23 2016
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.3 2010/02/05 09:44:23 roy Exp $
+#	$NetBSD: Makefile,v 1.3.8.1 2016/08/28 10:32:23 bouyer Exp $
 
 CONFIGFILES=		dot.cshrc dot.klogin dot.login dot.profile dot.shrc
 
@@ -12,4 +12,5 @@ FILESNAME_${F}=		${F:S/dot//}
 CONFIGLINKS=		/root/.cshrc	/.cshrc \
 			/root/.profile	/.profile
 
-.include 
+.include 
+.include 



CVS commit: [netbsd-6] src/etc/root

2012-03-17 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sat Mar 17 17:22:54 UTC 2012

Modified Files:
src/etc/root [netbsd-6]: dot.cshrc dot.profile

Log Message:
Pull up following revision(s) (requested by he in ticket #109):
etc/root/dot.cshrc: revision 1.23
etc/root/dot.cshrc: revision 1.24
etc/root/dot.profile: revision 1.26
Can't use Bourne shell syntax here... (Even in comments, for PKG_PATH.)
Point first to 6.0 packages, then to packages for 5.1 or 5.0.
The latter have reduced usefullness in -current or netbsd-6 until
we have a compat50 package.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.22.4.1 src/etc/root/dot.cshrc
cvs rdiff -u -r1.25 -r1.25.4.1 src/etc/root/dot.profile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/root/dot.cshrc
diff -u src/etc/root/dot.cshrc:1.22 src/etc/root/dot.cshrc:1.22.4.1
--- src/etc/root/dot.cshrc:1.22	Tue Jun 21 05:31:29 2011
+++ src/etc/root/dot.cshrc	Sat Mar 17 17:22:54 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: dot.cshrc,v 1.22 2011/06/21 05:31:29 erh Exp $
+#	$NetBSD: dot.cshrc,v 1.22.4.1 2012/03/17 17:22:54 bouyer Exp $
 
 alias	h	history
 alias	j	jobs -l
@@ -22,8 +22,9 @@ setenv BLOCKSIZE 1k
 
 # Uncomment the following line(s) to install binary packages
 # from ftp.NetBSD.org via pkg_add.  (See also pkg_install.conf)
-#setenv PKG_PATH ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -m)/5.1/All
-#setenv PKG_PATH ${PKG_PATH};ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -m)/5.0/All
+#setenv PKG_PATH ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/`uname -m`/6.0/All
+#setenv PKG_PATH ${PKG_PATH};ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/`uname -m`/5.1/All
+#setenv PKG_PATH ${PKG_PATH};ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/`uname -m`/5.0/All
 
 set history=1000
 set path=(/sbin /usr/sbin /bin /usr/bin /usr/pkg/sbin /usr/pkg/bin /usr/X11R7/bin /usr/X11R6/bin /usr/local/sbin /usr/local/bin)

Index: src/etc/root/dot.profile
diff -u src/etc/root/dot.profile:1.25 src/etc/root/dot.profile:1.25.4.1
--- src/etc/root/dot.profile:1.25	Tue Jun 21 05:31:29 2011
+++ src/etc/root/dot.profile	Sat Mar 17 17:22:54 2012
@@ -1,11 +1,12 @@
-#	$NetBSD: dot.profile,v 1.25 2011/06/21 05:31:29 erh Exp $
+#	$NetBSD: dot.profile,v 1.25.4.1 2012/03/17 17:22:54 bouyer Exp $
 
 export PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/pkg/sbin:/usr/pkg/bin
 export PATH=${PATH}:/usr/X11R7/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin
 
 # Uncomment the following line(s) to install binary packages
 # from ftp.NetBSD.org via pkg_add.  (See also pkg_install.conf)
-#export PKG_PATH=ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -m)/5.1/All
+#export PKG_PATH=ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -m)/6.0/All
+#export PKG_PATH=${PKG_PATH};ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -m)/5.1/All
 #export PKG_PATH=${PKG_PATH};ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -m)/5.0/All
 
 export BLOCKSIZE=1k