PERFORCE change 34511 for review

Dag-Erling Smorgrav des at FreeBSD.org
Mon Jul 14 14:44:53 PDT 2003


http://perforce.freebsd.org/chv.cgi?CH=34511

Change 34511 by des at des.at.des.thinksec.com on 2003/07/14 14:44:14

	Include all files listed in the manifest.

Affected files ...

.. //depot/projects/openpam/dist.sh#10 edit

Differences ...

==== //depot/projects/openpam/dist.sh#10 (text+ko) ====

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $P4: //depot/projects/openpam/dist.sh#9 $
+# $P4: //depot/projects/openpam/dist.sh#10 $
 #
 
 set -e
@@ -10,11 +10,11 @@
 tarball="${distname}.tar.gz"
 
 install -d -m 0755 "${distname}"
-grep '^[a-z].*/$' MANIFEST | while read dir; do
+grep '^[A-Za-z].*/$' MANIFEST | while read dir; do
     echo "Creating ${dir}"
     install -d -m 0755 "${distname}/${dir}" || exit 1
 done
-grep '^[a-z].*[^/]$' MANIFEST | while read file; do
+grep '^[A-Za-z].*[^/]$' MANIFEST | while read file; do
     echo "Adding ${file}"
     install -c -m 0644 "${file}" "${distname}/${file}" || exit 1
 done


More information about the p4-projects mailing list