From 60784a081aa90c9cba6f334efb6f47f9f456d237 Mon Sep 17 00:00:00 2001 From: lwhsu Date: Tue, 6 Jul 2010 02:17:30 +0000 Subject: - Fix problem parsing /boot/loader.conf - Bump PORTREVISION PR: ports/148386 Submitted by: Russell Jackson Feature safe: yes --- textproc/augeas/Makefile | 2 ++ textproc/augeas/files/rcconf.aug | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'textproc/augeas') diff --git a/textproc/augeas/Makefile b/textproc/augeas/Makefile index dd6ac8936ddd..f414384ba68f 100644 --- a/textproc/augeas/Makefile +++ b/textproc/augeas/Makefile @@ -1,3 +1,4 @@ +# vim: ts=8 sw=8 # Ports collection makefile for: textproc/augeas # Date created: 19 May 2010 # Whom: Russell Jackson @@ -7,6 +8,7 @@ PORTNAME= augeas PORTVERSION= 0.7.1 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://augeas.net/download/ diff --git a/textproc/augeas/files/rcconf.aug b/textproc/augeas/files/rcconf.aug index 1ab86b678dd5..b91219f771a2 100644 --- a/textproc/augeas/files/rcconf.aug +++ b/textproc/augeas/files/rcconf.aug @@ -7,7 +7,7 @@ module RcConf = let eq = Util.del_str "=" let dquot = Util.del_str "\"" let char = /[^\n]/ - let var_name = /[A-Za-z0-9_]+/ + let var_name = /[A-Za-z0-9_.]+/ let value = dquot . store char* . dquot let kv_pair = [ key var_name . eq . value . eol ] -- cgit