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

make validate

This discussion is connected to the gimp-docs-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.

7 of 7 messages available
Toggle history

Please log in to manage your subscriptions.

make validate julien 21 Mar 11:46
  make validate Axel Wernicke 21 Mar 12:08
   make validate julien 21 Mar 12:33
    make validate Roman Joost 21 Mar 23:58
     make validate julien 22 Mar 11:35
      make validate Roman Joost 23 Mar 00:07
      make validate Sven Neumann 23 Mar 00:27
julien
2006-03-21 11:46:43 UTC (about 18 years ago)

make validate

Formerly, when I typed "make validate", validation was for all languages. Now, it is for "fr" only. I prefer the former version.
Is it possible to return to it?
Here is my configure.in:

# You can set the ALL_LINGUAS environment variable to # control what languages are build.

if test "x$ALL_LINGUAS" != "x"; then ALL_LINGUAS=$ALL_LINGUAS
else
ALL_LINGUAS="cs de en fr hr it nl sv zh_CN" fi

AC_SUBST(ALL_LINGUAS)

julien

Axel Wernicke
2006-03-21 12:08:29 UTC (about 18 years ago)

make validate

Am 21.03.2006 um 20:46 schrieb julien:

Formerly, when I typed "make validate", validation was for all languages. Now, it is for "fr" only.

that was not changed - was it??

I prefer the former version.

for a good reason!

Is it possible to return to it?
Here is my configure.in:

# You can set the ALL_LINGUAS environment variable to # control what languages are build.

if test "x$ALL_LINGUAS" != "x"; then ALL_LINGUAS=$ALL_LINGUAS
else
ALL_LINGUAS="cs de en fr hr it nl sv zh_CN" fi

AC_SUBST(ALL_LINGUAS)

hmm, so what happens if you say make validate ALL_LINGUAS="en cs de fr" ? Does it work? Did you set the ALL_LINGUAS variable in your shell (by accident may be)?

just wondering...

greetings, lexA

julien

julien
2006-03-21 12:33:11 UTC (about 18 years ago)

make validate

If I type "make validate ALL_LINGUAS="en de fr", that works right. If I type "make validate", I get fr only.

With "set", I get a list of variables, but ALL_LINGUAS is not in it...

julien

Axel Wernicke a ?crit :

Am 21.03.2006 um 20:46 schrieb julien:

Formerly, when I typed "make validate", validation was for all languages. Now, it is for "fr" only.

that was not changed - was it??

I prefer the former version.

for a good reason!

Is it possible to return to it?
Here is my configure.in:

# You can set the ALL_LINGUAS environment variable to # control what languages are build.

if test "x$ALL_LINGUAS" != "x"; then ALL_LINGUAS=$ALL_LINGUAS
else
ALL_LINGUAS="cs de en fr hr it nl sv zh_CN" fi

AC_SUBST(ALL_LINGUAS)

hmm, so what happens if you say make validate ALL_LINGUAS="en cs de fr" ? Does it work? Did you set the ALL_LINGUAS variable in your shell (by accident may be)?

just wondering...

greetings, lexA

julien

Roman Joost
2006-03-21 23:58:13 UTC (about 18 years ago)

make validate

On Tue, Mar 21, 2006 at 09:33:14PM +0100, julien wrote:

If I type "make validate ALL_LINGUAS="en de fr", that works right. If I type "make validate", I get fr only.

With "set", I get a list of variables, but ALL_LINGUAS is not in it...

Is it possible that your terminal remembers settings? You may try:

unset ALL_LINGUAS

to set any variables you exported.

Greetings,

julien
2006-03-22 11:35:16 UTC (about 18 years ago)

make validate

Unfortunately, 'unset ALL_LINGUAS' changes nothing... 'make validate' was working well before. This problem appeared suddenly. I use Linux only, actually, to work with CVS. Too many problems with Linux.

Greetings

julien

Roman Joost a ?crit :

On Tue, Mar 21, 2006 at 09:33:14PM +0100, julien wrote:

If I type "make validate ALL_LINGUAS="en de fr", that works right. If I type "make validate", I get fr only.

With "set", I get a list of variables, but ALL_LINGUAS is not in it...

Is it possible that your terminal remembers settings? You may try:

unset ALL_LINGUAS

to set any variables you exported.

Greetings,

------------------------------------------------------------------------

Roman Joost
2006-03-23 00:07:35 UTC (about 18 years ago)

make validate

On Wed, Mar 22, 2006 at 08:35:18PM +0100, julien wrote:

Unfortunately, 'unset ALL_LINGUAS' changes nothing... 'make validate' was working well before. This problem appeared suddenly. I use Linux only, actually, to work with CVS. Too many problems with Linux.

Hm... do you still work as root or as a normal user? If you switch between them, you probably have the variable set for a different user?

Greetings,

Sven Neumann
2006-03-23 00:27:58 UTC (about 18 years ago)

make validate

Hi,

julien writes:

Unfortunately, 'unset ALL_LINGUAS' changes nothing... 'make validate' was working well before. This problem appeared suddenly.

What matters is what ALL_LINGUAS was set to when you last run the configure script. Unsetting it and only running make is not going to change anything.

Sven