By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release.
Bug 785 - kdeedu: kalzium makefile patch
Summary: kdeedu: kalzium makefile patch
Status: RESOLVED FIXED
Alias: None
Product: TDE
Classification: Unclassified
Component: tdeedu (show other bugs)
Version: R14.0.0 [Trinity]
Hardware: Other Other
: P5 trivial
Assignee: Timothy Pearson
URL:
Depends on:
Blocks:
 
Reported: 2012-01-10 21:29 CST by Darrell
Modified: 2012-10-19 15:22 CDT (History)
2 users (show)

See Also:
Compiler Version:
TDE Version String:
Application Version:
Application Name:


Attachments
Fix kalzium makefile (364 bytes, patch)
2012-01-10 21:29 CST, Darrell
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Darrell 2012-01-10 21:29:10 CST
Created attachment 263 [details]
Fix kalzium makefile

I don't know whether the incorrect Makefile affected how kalzium builds with ocaml support, but the existing Makefile always causes the following error:

Makefile:92: .depend: No such file or directory

I'm no Makefile expert by any means but searching the web revealed a simple solution of prefixing the include directive with a dash. Seems to work too. No more error message.
Comment 1 Timothy Pearson 2012-01-11 13:33:52 CST
A quick search revealed this:
http://code.google.com/p/sks-keyserver/issues/detail?id=4

So it is a good idea to also add a ".depend: dep" to the makefile.
Comment 2 Timothy Pearson 2012-01-11 13:38:27 CST
Since I have no idea what the .depend file is supposed to contain I have applied your patch as-is in GIT hash b83d045.

Thanks for reporting, and for the patch!
Comment 3 Darrell 2012-01-11 19:48:39 CST
Although the bug report is now resolved, the contents of the .depends file:

calc.cmi: chemset.cmi
chem.cmi: datastruct.cmi
datastruct.cmi: chemset.cmi
parser.cmi: chemset.cmi
calc.cmo: parser.cmi lexer.cmo datastruct.cmi chemset.cmi chem.cmi calc.cmi
calc.cmx: parser.cmx lexer.cmx datastruct.cmx chemset.cmx chem.cmx calc.cmi
chem.cmo: datastruct.cmi chem.cmi
chem.cmx: datastruct.cmx chem.cmi
chemset.cmo: chemset.cmi
chemset.cmx: chemset.cmi
datastruct.cmo: chemset.cmi datastruct.cmi
datastruct.cmx: chemset.cmx datastruct.cmi
lexer.cmo: parser.cmi
lexer.cmx: parser.cmx
main.cmo: calc.cmi
main.cmx: calc.cmx
parser.cmo: chemset.cmi parser.cmi
parser.cmx: chemset.cmx parser.cmi