autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: tabs in configure.in?


From: Raja R Harinath
Subject: Re: tabs in configure.in?
Date: 26 Apr 2001 11:37:40 -0500
User-agent: Gnus/5.090003 (Oort Gnus v0.03) Emacs/21.0.102

Lars Hecking <address@hidden> writes:
>  The current version of GNU gettext's m4/gettext.4 contains the following
> 
> |  [case " "$CONFIG_FILES" " in *" po/Makefile.in "* | *" po/Makefile.in:"*)
> |     sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
> |     ;;
> |   esac])
> 
> 
>  compared to
> 
> [case "$CONFIG_FILES" in *po/Makefile.in*)
> ...
> 
>  in older versions. Why they put in all these additional spaces in the first
>  place is not obvious to me at all, but that's how it is now.

So that the case won't succeed on, say,

  repo/Makefile.indent.in

Anyway, I think m4/gettext.m4 should be fixed to use at least

  case " $CONFIG_FILES " in "*[         ]po/Makefile.in[:       ]*") 
    sed ... ;;
  esac

- Hari
-- 
Raja R Harinath ------------------------------ address@hidden
"When all else fails, read the instructions."      -- Cahn's Axiom
"Our policy is, when in doubt, do the right thing."   -- Roy L Ash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]