OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-re Date: 09-Jul-2003 17:05:42
Branch: HEAD Handle: 2003070916054100
Modified files:
openpkg-re speclint.pl
Log:
disable install path checks for bootstrap related package 'openpkg-rc'
Summary:
Revision Changes Path
1.31 +4 -0 openpkg-re/speclint.pl
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-re/speclint.pl
============================================================================
$ cvs diff -u -r1.30 -r1.31 speclint.pl
--- openpkg-re/speclint.pl 8 Jul 2003 18:15:03 -0000 1.30
+++ openpkg-re/speclint.pl 9 Jul 2003 15:05:41 -0000 1.31
@@ -670,6 +670,10 @@
while ($todo =~ m/\%\{l_shtool\}\s+(mkdir|install)\s+/s) {
$done .= $`; $this = $&; $todo = $';
($this, $todo) = &command_extract($this . $todo);
+
+ # openpkg-rc is special because does bootstrap things
+ last if ($file =~ m|openpkg-rc\.spec$|);
+
my @cmd = &shell_tokenize(&multiline_join($this));
if ($cmd[1] eq 'mkdir') {
# join flags with their arguments
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]