RSS/Atom feed Twitter
Site is read-only, email is disabled

GIMP git build error on Mac

This discussion is connected to the gimp-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

8 of 8 messages available
Toggle history

Please log in to manage your subscriptions.

GIMP git build error on Mac Partha Bagchi 01 Jun 23:15
  GIMP git build error on Mac Carol Spears 01 Jun 23:50
  GIMP git build error on Mac Ell via gimp-developer-list 02 Jun 01:14
   GIMP git build error on Mac Partha Bagchi 02 Jun 02:28
    GIMP git build error on Mac Ell via gimp-developer-list 02 Jun 10:45
     GIMP git build error on Mac Partha Bagchi 02 Jun 10:55
      GIMP git build error on Mac Ell via gimp-developer-list 02 Jun 15:20
       GIMP git build error on Mac Partha Bagchi 02 Jun 16:42
Partha Bagchi
2017-06-01 23:15:03 UTC (almost 7 years ago)

GIMP git build error on Mac

Hi All,

A new wrinkle since May 22 (my last build). Did a pull today and now I am now getting the following error on my Mac:

GEN xgen-bec

/bin/sh: -c: line 1: syntax error: unexpected end of file make[2]: *** [gimpbaseenums.c] Error 2 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2

Thanks,
Partha

Carol Spears
2017-06-01 23:50:27 UTC (almost 7 years ago)

GIMP git build error on Mac

On Thu, Jun 1, 2017 at 7:15 PM, Partha Bagchi wrote:

Hi All,

A new wrinkle since May 22 (my last build). Did a pull today and now I am now getting the following error on my Mac:

GEN xgen-bec

/bin/sh: -c: line 1: syntax error: unexpected end of file make[2]: *** [gimpbaseenums.c] Error 2 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2

'git log' will tell you the commit numbers and developer notes.

'git log -p path/to/gimpbaseenums.c' will tell you the history of that particular file.

The commit number will make it easier for people to look it up. Even some of the
current developers....

carol

Ell via gimp-developer-list
2017-06-02 01:14:08 UTC (almost 7 years ago)

GIMP git build error on Mac

On Thu, 1 Jun 2017 19:15:03 -0400 Partha Bagchi wrote:

Hi All,

A new wrinkle since May 22 (my last build). Did a pull today and now I am now getting the following error on my Mac:

GEN xgen-bec

/bin/sh: -c: line 1: syntax error: unexpected end of file make[2]: *** [gimpbaseenums.c] Error 2 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2

Can you please report the output of "make V=1"?

-- Ell

Partha Bagchi
2017-06-02 02:28:07 UTC (almost 7 years ago)

GIMP git build error on Mac

On Thu, Jun 1, 2017 at 9:14 PM, Ell via gimp-developer-list < gimp-developer-list@gnome.org> wrote:

On Thu, 1 Jun 2017 19:15:03 -0400 Partha Bagchi wrote:

Hi All,

A new wrinkle since May 22 (my last build). Did a pull today and now I am now getting the following error on my Mac:

GEN xgen-bec

/bin/sh: -c: line 1: syntax error: unexpected end of file make[2]: *** [gimpbaseenums.c] Error 2 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2

Can you please report the output of "make V=1"?

-- Ell

Sure thing Ell. Here it is:

make[2]: Nothing to be done for `all'.

Making all in libgimpbase

if ! cmp -s xgen-bec gimpbaseenums.c; then \

cp xgen-bec gimpbaseenums.c; \

else \

# if the file hasn't changed, only update its timestamp, so that \

# the receipe doesn't get executed again next time, but allow this \

# to fail (e.g., when using a read-only source directory). \

touch gimpbaseenums.c 2> /dev/null \

|| true; \

fi

/bin/sh: -c: line 1: syntax error: unexpected end of file

make[2]: *** [gimpbaseenums.c] Error 2

make[1]: *** [all-recursive] Error 1

make: *** [all] Error 2

Ell via gimp-developer-list
2017-06-02 10:45:01 UTC (almost 7 years ago)

GIMP git build error on Mac

On Thu, 1 Jun 2017 22:28:07 -0400 Partha Bagchi wrote:

Can you please report the output of "make V=1"?

-- Ell

Sure thing Ell. Here it is:

Thanks :)

make[2]: Nothing to be done for `all'.

Making all in libgimpbase

if ! cmp -s xgen-bec gimpbaseenums.c; then \

cp xgen-bec gimpbaseenums.c; \

else \

# if the file hasn't changed, only update its timestamp, so that \

# the receipe doesn't get executed again next time, but allow this \

# to fail (e.g., when using a read-only source directory). \

touch gimpbaseenums.c 2> /dev/null \

|| true; \

fi

/bin/sh: -c: line 1: syntax error: unexpected end of file

make[2]: *** [gimpbaseenums.c] Error 2

make[1]: *** [all-recursive] Error 1

make: *** [all] Error 2

Hrmph, must be the comment in the middle of the recipe. I was actually surprised it worked in the first place -- must be a bash thing.

Oh well, no comments it is then :P

-- Ell

Partha Bagchi
2017-06-02 10:55:41 UTC (almost 7 years ago)

GIMP git build error on Mac

On Fri, Jun 2, 2017 at 6:45 AM, Ell wrote:

On Thu, 1 Jun 2017 22:28:07 -0400 Partha Bagchi wrote:

Can you please report the output of "make V=1"?

-- Ell

Sure thing Ell. Here it is:

Thanks :)

Anytime! :)

make[2]: Nothing to be done for `all'.

Making all in libgimpbase

if ! cmp -s xgen-bec gimpbaseenums.c; then \

cp xgen-bec gimpbaseenums.c; \

else \

# if the file hasn't changed, only update its timestamp, so that \

# the receipe doesn't get executed again next time, but allow this \

# to fail (e.g., when using a read-only source directory). \

touch gimpbaseenums.c 2> /dev/null \

|| true; \

fi

/bin/sh: -c: line 1: syntax error: unexpected end of file

make[2]: *** [gimpbaseenums.c] Error 2

make[1]: *** [all-recursive] Error 1

make: *** [all] Error 2

Hrmph, must be the comment in the middle of the recipe. I was actually surprised it worked in the first place -- must be a bash thing.

Yeah me too. I had no problems on Windows though and so yes, it's most probably a bash thing.

Oh well, no comments it is then :P

Sounds good. Let me know when you upload a fix. Thanks in advance for such a quick fix! :)

--
Ell

Partha

Ell via gimp-developer-list
2017-06-02 15:20:56 UTC (almost 7 years ago)

GIMP git build error on Mac

On Fri, 2 Jun 2017 06:55:41 -0400 Partha Bagchi wrote:

Sounds good. Let me know when you upload a fix. Thanks in advance for such a quick fix! :)

Should be fixed now, by commit 3ca48a0b30a85cfc8a63912906dd483208c342fb.

-- Ell

Partha Bagchi
2017-06-02 16:42:06 UTC (almost 7 years ago)

GIMP git build error on Mac

On Fri, Jun 2, 2017 at 11:20 AM, Ell wrote:

On Fri, 2 Jun 2017 06:55:41 -0400 Partha Bagchi wrote:

Sounds good. Let me know when you upload a fix. Thanks in advance for such a quick fix! :)

Should be fixed now, by commit 3ca48a0b30a85cfc8a63912906dd483208c342fb.

And it is! :) Thanks!

--
Ell