sdaau wrote: > > Another point, if you want to build against libusb.git then I > > recommend to build libusb-1.0 as such: > > > > ./configuring --prefix=~/something && make install > > Thanks for noting that, I have updated the README with a pointer. > > The thing about this, is that I don't like the `make install` part: > even after some years on Linux, one of the things that still freaks > me out is the contents of /bin, /usr/bin, /usr/lib/local/bin (and > the rest of the $PATH) :) So the way I handle that, is I trust > `apt-get` will take care of things; and if I have to build > something, I prefer to build it in a separate folder, without any > installation, and test it from there - so I can also compare to the > "vanilla" install of a package (for me, in Ubuntu).
Well that's why you specify --prefix when configuring. Look into what it does! :) One easy way to discover what it does is to run the following as a normal user (not root): mkdir /tmp/test && \ cd /tmp/test && \ git clone git://git.libusb.org/libusb.git && \ cd libusb && \ ./autogen.sh --prefix=/tmp/test/inst && \ make install && \ ls -lR /tmp/test/inst //Peter ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_nov _______________________________________________ sigrok-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sigrok-devel

