mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
We ran some sed scripts over the output of ocamldep to get them into a single line format. This actually broke the output of ocamldep, combining multiple dependencies into single lines. I didn't debug exactly why our sed rules were broken because modern ocamldep has an option (-one-line) which make this hacking unnecessary. Another useful option (-all) is added so that all dependencies are made explicit. Since old ocamldep in RHEL 6 doesn't support these options, we have to detect them at configure time. The historical reason we were trying to combine entries into a single line was so we could sort them. That was only needed back when we used to commit the dependency files (so the files were stable), but we haven't committed dependency files in a long time.