diff options
author | William Hubbs <williamh@gentoo.org> | 2020-03-08 12:04:22 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2020-03-08 12:07:27 -0500 |
commit | bb5cd29d111e64c30a5a359b9515d9a6ace440ca (patch) | |
tree | 0a73f1ebf04cb323dd4cf8db0a51b184d00495cf /eclass | |
parent | media-libs/portmidi: removed obsolete 217-r2 (diff) | |
download | gentoo-bb5cd29d111e64c30a5a359b9515d9a6ace440ca.tar.gz gentoo-bb5cd29d111e64c30a5a359b9515d9a6ace440ca.tar.bz2 gentoo-bb5cd29d111e64c30a5a359b9515d9a6ace440ca.zip |
go-module.eclass: fix strip restriction
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/go-module.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass index 74f7bb6aa70a..51484332335b 100644 --- a/eclass/go-module.eclass +++ b/eclass/go-module.eclass @@ -84,7 +84,7 @@ export GOFLAGS="-v -x -mod=readonly" QA_FLAGS_IGNORED='.*' # Go packages should not be stripped with strip(1). -RESTRICT="strip" +RESTRICT+=" strip" EXPORT_FUNCTIONS src_unpack pkg_postinst |