| Summary: | Python Bindings top Makefile.am doesn't provide KDE prefix path and thus building fails. | ||
|---|---|---|---|
| Product: | [Unmaintained] bindings | Reporter: | Ali Akcaagac <aliakc> |
| Component: | general | Assignee: | bindings-bugs-null |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: |
build error.
patch to fix the issue. patch to fix the issue. |
||
|
Description
Ali Akcaagac
2005-04-16 20:34:16 UTC
Created attachment 10675 [details]
build error.
Created attachment 10676 [details]
patch to fix the issue.
Created attachment 10677 [details]
patch to fix the issue.
Sorry uploaded wrong first patch, this one should do it.
CVS commit by qbast:
Unbreak compilation when KDEDIR is not set and KDE is not in /usr.
Patch by Ali Akcaagac.
BUGS:104034
M +1 -1 Makefile.am 1.9
--- kdebindings/python/Makefile.am #1.8:1.9
@@ -54,5 +54,5 @@
cd $(srcdir)/pykde ; \
export QTDIR=${qt_dir} ; \
- @PYTHON@ configure.py -c -d ${site_packages} -v ${sip_dir} -t "$$builddir/pykde"
+ @PYTHON@ configure.py -c -k @prefix@ -d ${site_packages} -v ${sip_dir} -t "$$builddir/pykde"
echo "" > prepkde
|