Stuart Stevenson wrote: > I just did a 'git pull'. My install will not configure as there is > no longer a configure file. What do I do now?
Jeff just changed this yesterday. The "configure" file is actually a generated file, and as such never really belonged in the repository. It is made by the new "autogen.sh" script that was added when the configure script was removed. So the compile procedure now is this: cd emc2.git/src ./autogen.sh ./configure --blah --blah --blah make sudo make setuid By the way, you can sort of look up the current canonical way to build the software by looking at how the buildbot does it. Go to <http://emc2-buildbot.colorado.edu/buildbot/waterfall>, look across the top row to find the build that's most similar to yours. For example, if you're building Trunk (aka master), realtime (as opposed to sim), run-in-place (as opposed to .deb), on Hardy, on a 32-bit machine, click on hardy-x86-trunk-realtime-rip. That page will show you the most recent builds of that configuration. Click on the most recent green (successful) one. That will take you to a webpage showing all the commands the buildbot ran, and their output. From there it should be clear what to do. (However, note that not every step the buildbot does is necessary or useful for developers following along at home.) -- Sebastian Kuzminsky ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Emc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/emc-users
