diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-12-07 00:48:38 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-12-07 01:01:54 +0100 |
commit | 9fcd60fdaf6216298340e24fde553d89456012d2 (patch) | |
tree | 6e723927b9187bd2d667c1501c466376fb1f24a6 /media-video | |
parent | media-video/vlc: Drop redundant DEPENDs (diff) | |
download | gentoo-9fcd60fdaf6216298340e24fde553d89456012d2.tar.gz gentoo-9fcd60fdaf6216298340e24fde553d89456012d2.tar.bz2 gentoo-9fcd60fdaf6216298340e24fde553d89456012d2.zip |
media-video/vlc: Cleanup src_prepare
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/vlc/vlc-9999.ebuild | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/media-video/vlc/vlc-9999.ebuild b/media-video/vlc/vlc-9999.ebuild index fab0c1c9fc00..e22e7fce9716 100644 --- a/media-video/vlc/vlc-9999.ebuild +++ b/media-video/vlc/vlc-9999.ebuild @@ -253,24 +253,13 @@ S="${WORKDIR}/${MY_P}" src_prepare() { default - # Remove unnecessary warnings about unimplemented pragmas on gcc for now. - # Need to recheck this with gcc 4.9 and every subsequent minor bump of gcc. - # - # config.h:792: warning: ignoring #pragma STDC FENV_ACCESS [-Wunknown-pragmas] - # config.h:793: warning: ignoring #pragma STDC FP_CONTRACT [-Wunknown-pragmas] - # - # https://gcc.gnu.org/c99status.html - if tc-is-gcc ; then - sed -i 's/ifndef __FAST_MATH__/if 0/g' configure.ac || die - fi - # Bootstrap when we are on a git checkout. if [[ ${PV} = *9999 ]] ; then ./bootstrap fi # Make it build with libtool 1.5 - rm -f m4/lt* m4/libtool.m4 || die + rm m4/lt* m4/libtool.m4 || die # We are not in a real git checkout due to the absence of a .git directory. touch src/revision.txt || die |