+debhelper (4.1.53) unstable; urgency=low
+
+ * dh_scrollkeeper: fixed some overenthusiastic quoting. Closes: #201810
+
+ -- Joey Hess <joeyh@debian.org> Fri, 18 Jul 2003 09:45:23 +0200
+
debhelper (4.1.52) unstable; urgency=low
* dh_clean: Clean the *.debhelper temp files on a per-package basis, in
Priority: optional
Maintainer: Joey Hess <joeyh@debian.org>
Build-Depends-Indep: perl (>= 5.6.1), coreutils | fileutils (>= 4.0-2.1), file (>= 3.23-1), dpkg-dev (>= 1.9.0)
-Standards-Version: 3.5.10.0
+Standards-Version: 3.6.0
Package: debhelper
Architecture: all
# of the content. First, the OMF files
foreach my $file (@omf_files) {
chomp $file;
- doit("perl", "-i", "-pe", "'s,http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/scrollkeeper-omf.dtd,/usr/share/xml/scrollkeeper/dtds/scrollkeeper-omf.dtd, if \$. < 10'", $file);
+ doit("perl", "-i", "-pe", 's,http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/scrollkeeper-omf.dtd,/usr/share/xml/scrollkeeper/dtds/scrollkeeper-omf.dtd, if $. < 10', $file);
}
# I could be cunning and parse the OMF for the DocBook
# files. That is far too much effort. Find to the
foreach my $xmlpath (@xml_paths) {
foreach my $file (`find $tmp/$xmlpath -type f -name \*.xml -printf '%p\n'`) {
chomp $file;
- doit("perl", "-i", "-pe", "'s,http://www.oasis-open.org/docbook/xml/([^/]+)/docbookx.dtd,/usr/share/sgml/docbook/dtd/xml/\\1/docbookx.dtd, if \$. < 10'", $file);
+ doit("perl", "-i", "-pe", 's,http://www.oasis-open.org/docbook/xml/([^/]+)/docbookx.dtd,/usr/share/sgml/docbook/dtd/xml/\\1/docbookx.dtd, if $. < 10', $file);
}
}