+Sat Aug 24 15:36:41 CDT 2002 Adam Heath <doogie@debian.org>
+
+ * scripts/install-info.pl: Previous install-infos(before 1.10) handled
+ multiple dir file entries, because they would copy the entire stanza
+ unmodified. The newest version does not do this, as it reformats the
+ options, and thereby only takes the first line. So, we now split all
+ the lines from the stanza, and process them all.
+
Sat Aug 24 14:47:56 CDT 2002 Adam Heath <doogie@debian.org>
* archtable: Add i386-gnu0.3.
* Fixes for HURD: Closes: #156545
* Add i386-gnu0.3 to archtable.
* Fix handling of static compiles, with regard to zlib.
+ * Previous install-infos(before 1.10) handled multiple dir file entries,
+ because they would copy the entire stanza unmodified. The newest
+ version does not do this, as it reformats the options, and thereby
+ only takes the first line. So, we now split all the lines from the
+ stanza, and process them all.
-- Adam Heath <doogie@debian.org> UNRELEASED
$mss= $#work+1;
}
- @work= (@work[0..$mss-1], $infoentry, @work[$mss..$#work]);
+ @work= (@work[0..$mss-1], map("$_\n",split(/\n/,$infoentry)), @work[$mss..$#work]);
} else {