conf/03-apse.conf: fix sed expression not to match trailing spaces in:

. http://directory.fsf.org
     . http://launchpad.net
This commit is contained in:
Silvan Calarco 2012-11-19 15:23:57 +01:00
parent 796b24e1e0
commit cd9d62f95b
2 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,12 @@
Changes in version 1.16.0
---
+ bugfix
* conf/03-apse.conf - Silvan Calarco:
Fix sed expression not to match trailing spaces in:
. http://directory.fsf.org
. http://launchpad.net
+
* Makefile - Davide Madrisan:
Target 'check': also check library files.

View File

@ -60,7 +60,7 @@ apse_uri[8]="http://directory.fsf.org/wiki/"
apse_put_fields[8]=""
apse_error_msg[8]="is currently no text"
apse_grep[8]=""
apse_sed[8]="s,^version \([^ ]*\),\1,pi"
apse_sed[8]="s,^version \([^ ]*\).*,\1,pi"
apse_enabled[9]=1
apse_site_name[9]="http://launchpad.net"
@ -68,4 +68,4 @@ apse_uri[9]="http://launchpad.net/"
apse_put_fields[9]=""
apse_error_msg[9]="page does not exist"
apse_grep[9]=""
apse_sed[9]="s,.*Latest version is \([^ ]*\),\1,pi"
apse_sed[9]="s,.*Latest version is \([^ ]*\).*,\1,pi"