Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 704818 - ebuilds/eclass/cmake.eclass: line 643: syntax error: unexpected end of file
Summary: ebuilds/eclass/cmake.eclass: line 643: syntax error: unexpected end of file
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Eclasses (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-01-05 11:30 UTC by Francesco Riosa
Modified: 2020-01-05 12:03 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Francesco Riosa 2020-01-05 11:30:29 UTC
bash -x gentoo/eclass/cmake.eclass
gentoo/eclass/cmake.eclass: line 637: unexpected EOF while looking for matching `"'
gentoo/eclass/cmake.eclass: line 643: syntax error: unexpected end of file
Comment 1 Andreas Sturmlechner gentoo-dev 2020-01-05 11:33:50 UTC
This is already fixed, sync again.
Comment 2 Francesco Riosa 2020-01-05 11:55:47 UTC
sorry d0b6ff625c10498e12c9a9dc129ab5b4f368164f does not fix it for me

--- cmake.eclass.orig   2020-01-05 11:52:21.390552032 +0000
+++ cmake.eclass        2020-01-05 11:52:54.581992095 +0000
@@ -567,7 +567,7 @@
                emake)
                        [[ -e Makefile ]] || die "Makefile not found. Error during configure stage."
                        [[ "${CMAKE_VERBOSE}" != "OFF" ]] && local verbosity="VERBOSE=1"
-                       emake "${verbosity} "$@"
+                       emake "${verbosity}" "$@"
                        ;;
                ninja)
                        [[ -e build.ninja ]] || die "build.ninja not found. Error during configure stage."