|
From: Bill S. <g4...@cl...> - 2017-08-04 13:41:32
|
On 04/08/2017 14:32, Claude Frantz wrote: > Many thanks, Bill ! > > Please see what happens. I'm not more sure which branch is in use now. > Where is my error now ? How can I fix it ? > > Best wishes, > Claude (DJ0OT) > > $ pwd > /home/claude/ham/JoeTaylor/wsjtx > $ svn cosvn://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx-1.8 > ~/ham/JoeTaylor/wsjtx/src > svn: E155000: '/home/claude/ham/JoeTaylor/wsjtx/src' is already a > working copy for a different URL > $ svn info > Path: . > Working Copy Root Path: /home/claude/ham/JoeTaylor/wsjtx > URL:svn://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx-1.8 > Relative URL: ^/branches/wsjtx-1.8 > Repository Root:svn://svn.code.sf.net/p/wsjt/wsjt > Repository UUID: ab8295b8-cf94-4d9e-aec4-7959e3be5d79 > Revision: 7997 > Node Kind: directory > Schedule: normal > Last Changed Author: bsomervi > Last Changed Rev: 7996 > Last Changed Date: 2017-08-03 18:42:10 +0200 (Thu, 03 Aug 2017) > > $ svn update > Updating '.': > At revision 7997. Hi Claude, looks like you have two source trees checked out, one at ~/ham/JoeTaylor/wsjtx which is at ^/branches/wsjtx-1.8 and another at ~/ham/JoeTaylor/wsjtx/src which is at ^/branches/wsjtx, you are building the latter. Try this: $ cd ~/ham/JoeTaylor/wsjtx $ rm -r * $ svn co svn://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx-1.8 src $ mkdir build $ cd build $ cmake -D CMAKE_PREFIX_PATH=~/hamlib_prefix -D CMAKE_INSTALL_PREFIX=~/.wsjtx ../src $ cmake --build . --target install -- -j4 $ ~/.wsjtx/bin/wsjtx 73 Bill G4WJS. |