OpenPKG CVS Repository http://cvs.openpkg.org/ ____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /e/openpkg/cvs Email: [EMAIL PROTECTED] Module: openpkg-src Date: 30-Dec-2002 23:09:20 Branch: HEAD Handle: 2002123022091900 Modified files: openpkg-src/openpkg-tool openpkg-build.pl Log: whitespaces are required to not pick up %options (note the 's') Summary: Revision Changes Path 1.19 +1 -1 openpkg-src/openpkg-tool/openpkg-build.pl ____________________________________________________________________________ patch -p0 <<'@@ .' Index: openpkg-src/openpkg-tool/openpkg-build.pl ============================================================================ $ cvs diff -u -r1.18 -r1.19 openpkg-build.pl --- openpkg-src/openpkg-tool/openpkg-build.pl 30 Dec 2002 22:05:36 -0000 1.18 +++ openpkg-src/openpkg-tool/openpkg-build.pl 30 Dec 2002 22:09:19 -0000 1.19 @@ -359,7 +359,7 @@ return if ($l !~ m/(--define|%option)/s); my $with = {}; $l =~ s/--define\s*'(\S+)\s+(\S+?)'/$with->{$1} = $2, ''/ge; # before openpkg-20021230 - $l =~ s/%option\s*(\S+)\s+(\S+)/$with->{$1} = $2, ''/ge; # after openpkg-20021230 + $l =~ s/%option\s+(\S+)\s+(\S+)/$with->{$1} = $2, ''/ge; # after openpkg-20021230 return $with; } @@ . ______________________________________________________________________ The OpenPKG Project www.openpkg.org CVS Repository Commit List [EMAIL PROTECTED]