]> git.lyx.org Git - features.git/commitdiff
set AWK to gawk and use it
authorLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 15 Jul 2005 18:58:17 +0000 (18:58 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 15 Jul 2005 18:58:17 +0000 (18:58 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10226 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
configure.ac
po/ChangeLog
po/Makefile.in.in

index 219c0b78d1831d6679ed0def47807f26407a8fb7..4baf693d372d57fe8e742b4bb092799fad044051 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-07-15    <lgb@tandberg.net>
+
+       * configure.ac: set AWK to gawk and subsitute 
+
 2005-07-15  José Matos <jamatos@lyx.org>
 
        * configure.ac: Add support for python, and add Makefile to
index 8e3de3d27a41576f2e1d3564041a4e1f5dd8a15c..2b048dea1295924197ae1f97ed5725e8f48cc37d 100644 (file)
@@ -30,6 +30,9 @@ done
 ### Check for programs
 AC_PROG_MAKE_SET
 AC_PROG_INSTALL
+
+AC_SUBST(AWK,[gawk])
+
 #AC_PROG_RANLIB
 AC_CHECK_PROG(KPSEWHICH, kpsewhich, kpsewhich, :)
 if test "x$KPSEWHICH" = xkpsewhich ; then
index 620cfec0eb2598f0ff659d4ddcafe104305887db..7d0d2f8aff95f48b662d202e9bd62fadd3cc23c9 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-15    <lgb@tandberg.net>
+
+       * Makefile.in.in: use AWK variable
+
 2005-07-11  Helge Hafting  <helge.hafting@aitel.hist.no>
 
        * no.po: The branch inset name is translated, several correct
index 54ceb168c27d606db0242f96ad4b37348fc67b28..b2795cab813cc5803b5356f9e39c661c51597958 100644 (file)
@@ -31,6 +31,8 @@ INSTALL_DATA = @INSTALL_DATA@
 MKINSTALLDIRS = @MKINSTALLDIRS@
 mkinstalldirs = $(SHELL) $(MKINSTALLDIRS)
 
+AWK = @AWK@
+
 GMSGFMT = @GMSGFMT@
 MSGFMT = @MSGFMT@
 XGETTEXT = @XGETTEXT@
@@ -377,7 +379,7 @@ l10n_pots: xforms_l10n.pot qt_l10n.pot layouts_l10n.pot languages_l10n.pot ui_l1
 
 xforms_l10n.pot: $(top_srcdir)/src/frontends/xforms/forms/*.fd
        LC_ALL=C ; export LC_ALL ; \
-       awk -v top_srcdir="$(top_srcdir)" ' \
+       $(AWK) -v top_srcdir="$(top_srcdir)" ' \
                function fixupfilename() \
                {\
                        return substr(FILENAME, length(top_srcdir "/") + 1);\
@@ -406,7 +408,7 @@ xforms_l10n.pot: $(top_srcdir)/src/frontends/xforms/forms/*.fd
 
 qt_l10n.pot: $(top_srcdir)/src/frontends/qt2/ui/*.ui
        LC_ALL=C ; export LC_ALL ; \
-       awk -v top_srcdir="$(top_srcdir)" ' \
+       $(AWK) -v top_srcdir="$(top_srcdir)" ' \
                function fixupfilename() \
                {\
                        return substr(FILENAME, length(top_srcdir "/") + 1);\
@@ -428,7 +430,7 @@ qt_l10n.pot: $(top_srcdir)/src/frontends/qt2/ui/*.ui
 
 layouts_l10n.pot: $(top_srcdir)/lib/layouts/*.layout $(top_srcdir)/lib/layouts/*.inc
        LC_ALL=C ; export LC_ALL ; \
-       awk -v top_srcdir="$(top_srcdir)" ' \
+       $(AWK) -v top_srcdir="$(top_srcdir)" ' \
                function fixupfilename() \
                {\
                        return substr(FILENAME, length(top_srcdir "/") + 1);\
@@ -467,7 +469,7 @@ layouts_l10n.pot: $(top_srcdir)/lib/layouts/*.layout $(top_srcdir)/lib/layouts/*
        ${top_srcdir}/lib/layouts/*.layout ${top_srcdir}/lib/layouts/*.inc > $@
 
 languages_l10n.pot: $(top_srcdir)/lib/languages
-       awk -v top_srcdir="$(top_srcdir)" ' \
+       $(AWK) -v top_srcdir="$(top_srcdir)" ' \
                function fixupfilename() \
                {\
                        return substr(FILENAME, length(top_srcdir "/") + 1);\
@@ -486,7 +488,7 @@ languages_l10n.pot: $(top_srcdir)/lib/languages
 
 ui_l10n.pot: $(top_srcdir)/lib/ui/*.ui
        LC_ALL=C ; export LC_ALL ; \
-       awk -v top_srcdir="$(top_srcdir)" ' \
+       $(AWK) -v top_srcdir="$(top_srcdir)" ' \
                function fixupfilename() \
                {\
                        return substr(FILENAME, length(top_srcdir "/") + 1);\