Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 279965 - dev-db/hk_classes fails to configure with autoconf-2.64
Summary: dev-db/hk_classes fails to configure with autoconf-2.64
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo KDE team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: autoconf-2.64
  Show dependency tree
 
Reported: 2009-08-01 23:05 UTC by Diego Elio Pettenò (RETIRED)
Modified: 2009-12-24 12:36 UTC (History)
0 users

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


Attachments
Build log (hk_classes-0.8.3-r1:20090801-191704.log,8.39 KB, text/plain)
2009-08-01 23:06 UTC, Diego Elio Pettenò (RETIRED)
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Diego Elio Pettenò (RETIRED) gentoo-dev 2009-08-01 23:05:59 UTC
Check the attached build log, the problem is in this part of acinclude.m4:

                        AC_MSG_RESULT([no])
                        AC_MSG_ERROR([this package requires Python $1. 
If you have it installed, but it isn't the default Python
interpreter in your system path, please pass the PYTHON_VERSION 
variable to configure. See ``configure --help'' for reference.
])dnl
                fi
        fi

the "dnl" there stands for "discard till new line", a comment, but new-line is included in the discard, that brings the "fi" keyword up. In the final configure it becomes:

                        as_fn_error "this package requires Python .
If you have it installed, but it isn't the default Python
interpreter in your system path, please pass the PYTHON_VERSION
variable to configure. See \`\`configure --help'' for reference.
" "$LINENO" 5           fi

and fi is thus interpreted as a parameter to as_fn_error.

there will, then, be a missing "fi" in the configure file.
Comment 1 Diego Elio Pettenò (RETIRED) gentoo-dev 2009-08-01 23:06:30 UTC
Created attachment 199855 [details]
Build log
Comment 2 Samuli Suominen (RETIRED) gentoo-dev 2009-12-24 12:36:29 UTC
Removed from tree (with knoda, it's only reverse dep)