From bff1bcc740a412573ed874f8f61d2987c8eaa4f0 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sat, 20 Sep 2014 10:40:09 -0400 Subject: build: Fix negation in sed character class --- diff --git a/build b/build index 97296cd..e643fa0 100755 --- a/build +++ b/build @@ -8,7 +8,7 @@ version = $$(printf '%s\n' '$(OPK_SOURCE_VERSION)' | \ sed 's|\(^[0-9][0-9]*\.[0-9][0-9]*\).*$$|\1|') dist_id = $$(printf '%s\n' "$${dist_name}" | tr '[A-Z]' '[a-z]' | \ - sed 's|[!a-z0-9_]|_|g') + sed 's|[^a-z0-9_]|_|g') # Set the distribution name in dist-vars.sh, not here. script = \ -- cgit v0.9.1