diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2002-08-20 16:11:58 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2002-08-20 16:11:58 +0000 |
commit | 3f82b441ae4cc64a29ce8961bc7a4da34084ad6c (patch) | |
tree | 55a31c939f90730c44a440cf8eab680f4b4dd571 /docs/docbook/scripts | |
parent | 2f1da0c3e3e4950006a918352e9908a65198456e (diff) | |
download | samba-3f82b441ae4cc64a29ce8961bc7a4da34084ad6c.tar.gz samba-3f82b441ae4cc64a29ce8961bc7a4da34084ad6c.tar.bz2 samba-3f82b441ae4cc64a29ce8961bc7a4da34084ad6c.zip |
Strip URL stuff, not only ending in .html
(This used to be commit 8bb4843f20c58bcf423bade3342beea61f2b35f7)
Diffstat (limited to 'docs/docbook/scripts')
-rw-r--r-- | docs/docbook/scripts/strip-links.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docbook/scripts/strip-links.pl b/docs/docbook/scripts/strip-links.pl index dbbdceaabc..d89da23abe 100644 --- a/docs/docbook/scripts/strip-links.pl +++ b/docs/docbook/scripts/strip-links.pl @@ -7,7 +7,7 @@ while (<STDIN>) { chomp ($_); - $_ =~ s/\s*<URL:.*html.*>\s*//g; + $_ =~ s/\s*<URL:.*>\s*//g; print "$_\n"; } |