Re: [Bug-apl] Best way to compile after a SVN update

2015-05-21 Thread Blake McBride
Change: cp -rp ../gnu-apl.svn/* . To: cp -rp ../gnu-apl.svn/. . On Thu, May 21, 2015 at 9:50 AM, Louis Chretien wrote: > If i run the script, how come the resulting apl says “Unversioned > directory” as to the SVN number? > > > On 2015-05-13, at 07:20, Blake McBride wrote: > > Here is a sa

Re: [Bug-apl] Best way to compile after a SVN update

2015-05-21 Thread Louis Chretien
If i run the script, how come the resulting apl says “Unversioned directory” as to the SVN number? > On 2015-05-13, at 07:20, Blake McBride wrote: > > Here is a safer version: > > # > cd ~/Backup > rm -rf apl > mkdir apl > cd apl > cp -rp ../gnu-apl.svn/* . > ./configure > make > sudo make in

Re: [Bug-apl] Best way to compile after a SVN update

2015-05-13 Thread Blake McBride
Here is a safer version: # cd ~/Backup rm -rf apl mkdir apl cd apl cp -rp ../gnu-apl.svn/* . ./configure make sudo make install On Wed, May 13, 2015 at 6:15 AM, Blake McBride wrote: > I build with the following script: > > # > cd ~/Backup > mkdir apl > cd apl > rm -rf * > cp -rp ../gnu-apl.sv

Re: [Bug-apl] Best way to compile after a SVN update

2015-05-13 Thread Blake McBride
I build with the following script: # cd ~/Backup mkdir apl cd apl rm -rf * cp -rp ../gnu-apl.svn/* . ./configure make sudo make install This way my SVN copy is never touched. Blake On Tue, May 12, 2015 at 9:45 AM, Juergen Sauermann < juergen.sauerm...@t-online.de> wrote: > Hi Louis, > > The

Re: [Bug-apl] Best way to compile after a SVN update

2015-05-12 Thread Juergen Sauermann
Hi Louis, The SVN number is written by ./configure, so if you want it to be correct then you need to re-run ./configure after svn update. But that number not too relevant so skipping this ./configure is normally OK. The more important que