diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-09-20 10:40:09 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-09-20 10:40:09 (EDT) |
commit | bff1bcc740a412573ed874f8f61d2987c8eaa4f0 (patch) | |
tree | 0f2f31b8f23ca1afed44af0cbf60dd4455b75895 | |
parent | f3e814d82693046df974364e153fcc9cfc2629ce (diff) |
build: Fix negation in sed character class
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 = \ |