Revision: 2665
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2665
Author: robertmh
Date: 2009-10-26 19:39:35 +0000 (Mon, 26 Oct 2009)
Log Message:
-----------
2009-10-26 Robert Millan <[email protected]>
* gendistlist.sh: Simplify .svn check. Skip .bzr as well.
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/gendistlist.sh
Property Changed:
----------------
trunk/grub2/
Property changes on: trunk/grub2
___________________________________________________________________
Modified: bzr:revision-info
- timestamp: 2009-10-26 19:24:47.417999983 +0100
committer: Robert Millan <[email protected]>
properties:
branch-nick: trunk
+ timestamp: 2009-10-26 20:39:20.674000025 +0100
committer: Robert Millan <[email protected]>
properties:
branch-nick: trunk
Modified: bzr:revision-id:v3-single1-dHJ1bmsvZ3J1YjI.
- 1769 [email protected]
1770 [email protected]
1771 [email protected]
1772 [email protected]
1773 [email protected]
1774 [email protected]
1775 [email protected]
1776 [email protected]
1777 [email protected]
1778 [email protected]
1779 [email protected]
1780 [email protected]
1781 [email protected]
1784 [email protected]
1785 [email protected]
1786 [email protected]
1787 [email protected]
1788 [email protected]
+ 1769 [email protected]
1770 [email protected]
1771 [email protected]
1772 [email protected]
1773 [email protected]
1774 [email protected]
1775 [email protected]
1776 [email protected]
1777 [email protected]
1778 [email protected]
1779 [email protected]
1780 [email protected]
1781 [email protected]
1784 [email protected]
1785 [email protected]
1786 [email protected]
1787 [email protected]
1788 [email protected]
1789 [email protected]
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2009-10-26 18:25:02 UTC (rev 2664)
+++ trunk/grub2/ChangeLog 2009-10-26 19:39:35 UTC (rev 2665)
@@ -1,5 +1,9 @@
2009-10-26 Robert Millan <[email protected]>
+ * gendistlist.sh: Simplify .svn check. Skip .bzr as well.
+
+2009-10-26 Robert Millan <[email protected]>
+
* Makefile.in (RMKFILES): Rewrite using $(wildcard).
2009-10-26 Robert Millan <[email protected]>
Modified: trunk/grub2/gendistlist.sh
===================================================================
--- trunk/grub2/gendistlist.sh 2009-10-26 18:25:02 UTC (rev 2664)
+++ trunk/grub2/gendistlist.sh 2009-10-26 19:39:35 UTC (rev 2665)
@@ -35,7 +35,7 @@
cd $dir
for dir in $DISTDIRS; do
- for d in `find $dir -type d | sed '/\/\.svn$/d;\/\.svn\//d' | sort`; do
+ for d in `find $dir -type d -not -name .svn -not -name .bzr | sort`; do
find $d -maxdepth 1 -name '*.[chSy]' -o -name '*.mk' -o -name '*.rmk' \
-o -name '*.rb' -o -name '*.in' -o -name '*.tex' -o -name '*.texi' \
-o -name '*.info' -o -name 'grub.cfg' -o -name 'README' \