diff options
author | Tim Harder <radhermit@gentoo.org> | 2016-11-16 19:44:20 -0500 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2016-11-16 19:46:26 -0500 |
commit | 4b755377dbe49bbd7e50bea41c618f3a75b44ff0 (patch) | |
tree | 3581ecc517f2842210bef4d47d71656a38393528 /app-editors/vim-core | |
parent | profiles: remove DRACUT_MODULES USE_EXPAND (diff) | |
download | gentoo-4b755377dbe49bbd7e50bea41c618f3a75b44ff0.tar.gz gentoo-4b755377dbe49bbd7e50bea41c618f3a75b44ff0.tar.bz2 gentoo-4b755377dbe49bbd7e50bea41c618f3a75b44ff0.zip |
app-editors/vim: update live ebuilds to work with renamed file
configure.in was renamed to configure.ac (bug #599992).
Diffstat (limited to 'app-editors/vim-core')
-rw-r--r-- | app-editors/vim-core/vim-core-9999.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-editors/vim-core/vim-core-9999.ebuild b/app-editors/vim-core/vim-core-9999.ebuild index b270bddd9feb..4efe938449d6 100644 --- a/app-editors/vim-core/vim-core-9999.ebuild +++ b/app-editors/vim-core/vim-core-9999.ebuild @@ -60,12 +60,12 @@ src_prepare() { "${S}"/runtime/doc/tagsrch.txt \ "${S}"/runtime/doc/usr_29.txt \ "${S}"/runtime/menu.vim \ - "${S}"/src/configure.in || die 'sed failed' + "${S}"/src/configure.ac || die 'sed failed' # Don't be fooled by /usr/include/libc.h. When found, vim thinks # this is NeXT, but it's actually just a file in dev-libs/9libs # This fixes bug 43885 (20 Mar 2004 agriffis) - sed -i 's/ libc\.h / /' "${S}"/src/configure.in || die 'sed failed' + sed -i 's/ libc\.h / /' "${S}"/src/configure.ac || die 'sed failed' # gcc on sparc32 has this, uhm, interesting problem with detecting EOF # correctly. To avoid some really entertaining error messages about stuff @@ -106,7 +106,7 @@ src_configure() { replace-flags -O3 -O2 # Fix bug 18245: Prevent "make" from the following chain: - # (1) Notice configure.in is newer than auto/configure + # (1) Notice configure.ac is newer than auto/configure # (2) Rebuild auto/configure # (3) Notice auto/configure is newer than auto/config.mk # (4) Run ./configure (with wrong args) to remake auto/config.mk |