diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-01-30 10:56:51 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-01-30 10:56:51 +0100 |
commit | ca7162773638d3393ae2413796aef607397ab30e (patch) | |
tree | 1ba2d28e97d602117de9675f2266608ba92730a3 /eclass | |
parent | 7349ee6846109f21db1957b2023df3892a33eb39 (diff) | |
download | gentoo-ca7162773638d3393ae2413796aef607397ab30e.tar.gz gentoo-ca7162773638d3393ae2413796aef607397ab30e.tar.xz |
eclass/gnome2-utils.eclass: fix DGSEAL_ENABLE sed (#530490 by Alexander Tsoy)
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gnome2-utils.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/gnome2-utils.eclass b/eclass/gnome2-utils.eclass index d36f634216d..1f463890238 100644 --- a/eclass/gnome2-utils.eclass +++ b/eclass/gnome2-utils.eclass @@ -503,7 +503,7 @@ gnome2_disable_deprecation_warning() { LC_ALL=C sed -r -i \ -e 's:-D[A-Z_]+_DISABLE_DEPRECATED:$(/bin/true):g' \ - -e 's:-DGSEAL_ENABLE+[A-Z_]:$(/bin/true):g' \ + -e 's:-DGSEAL_ENABLE(=[A-Za-z0-9_]*)?:$(/bin/true):g' \ -i "${makefile}" if [[ $? -ne 0 ]]; then |