David Phillips | 14 Oct 21:41
Picon

2.40.61 build errors


I just saw the post regarding the latest build of Unison and thought I'd try to compile it. (On a OS X 10.6 intel
machine). The last version I tried to build was 2.40.16 which built - and still builds; I checked again just
now - just fine. When I attempt to build the text version of unison, after unpacking unison into my build
directory I get the following. Needless to say, this isn't a big deal as 2.40.16 is working fine for me, but I
thought I'd report the problem.
    David

Command:
~/src/unison-2.40.61% make UISTYLE=text
Output:
./mkProjectInfo > Makefile.ProjectInfo
/bin/sh: ./mkProjectInfo: No such file or directory
make: *** Deleting file `Makefile.ProjectInfo'
UISTYLE = text
Building for Unix
NATIVE = true
THREADS = false
STATIC = false
OSTYPE =
OSARCH = osx
make tags
./mkProjectInfo > Makefile.ProjectInfo
/bin/sh: ./mkProjectInfo: No such file or directory
make[1]: *** Deleting file `Makefile.ProjectInfo'
if [ -f `which etags` ]; then \
	    etags *.mli */*.mli *.ml */*.ml */*.m *.c */*.c *.txt \
          ; fi 

---
(Continue reading)

Jerome Vouillon | 14 Oct 22:11
Picon

Re: 2.40.61 build errors

On Thu, Oct 14, 2010 at 03:41:02PM -0400, David Phillips wrote:
> I just saw the post regarding the latest build of Unison and thought
> I'd try to compile it. (On a OS X 10.6 intel machine). The last
> version I tried to build was 2.40.16 which built - and still builds;
> I checked again just now - just fine. When I attempt to build the
> text version of unison, after unpacking unison into my build
> directory I get the following. Needless to say, this isn't a big
> deal as 2.40.16 is working fine for me, but I thought I'd report the
> problem.

As a workaround, just run "make ./mkProjectInfo" before
"make UISTYLE=text" (ignoring any error), or apply
the attached patch.

-- Jerome

Index: Makefile
===================================================================
--- Makefile	(révision 465)
+++ Makefile	(copie de travail)
@@ -60,7 +60,7 @@
 # NAME, VERSION, and MAJORVERSION, automatically generated
 -include Makefile.ProjectInfo

-Makefile.ProjectInfo: mkProjectInfo.ml $(wildcard ../.bzr/branch/last-revision)
+Makefile.ProjectInfo: mkProjectInfo $(wildcard ../.bzr/branch/last-revision)
 	./mkProjectInfo > $@

 mkProjectInfo: mkProjectInfo.ml

(Continue reading)

Karl M | 14 Oct 23:44
Picon
Favicon

RE: 2.40.61 build errors


________________________________
> CC: unison-users
> From: Jerome.Vouillon
> Date: Thu, 14 Oct 2010 22:11:28 +0200
> Subject: Re: [unison-users] 2.40.61 build errors
>
>
>
> On Thu, Oct 14, 2010 at 03:41:02PM -0400, David Phillips wrote:
> > I just saw the post regarding the latest build of Unison and thought
> > I'd try to compile it. (On a OS X 10.6 intel machine). The last
> > version I tried to build was 2.40.16 which built - and still builds;
> > I checked again just now - just fine. When I attempt to build the
> > text version of unison, after unpacking unison into my build
> > directory I get the following. Needless to say, this isn't a big
> > deal as 2.40.16 is working fine for me, but I thought I'd report the
> > problem.
>
> As a workaround, just run "make ./mkProjectInfo" before
> "make UISTYLE=text" (ignoring any error), or apply
> the attached patch.
>
> -- Jerome
>
> Index: Makefile
> ===================================================================
> --- Makefile (révision 465)
> +++ Makefile (copie de travail)
> @@ -60,7 +60,7 @@
(Continue reading)


Gmane