Use $(...) notation, not @...@ for AC_REPLACE'd variables.
authorJim Meyering <jim@meyering.net>
Sat, 7 Jun 2003 06:07:38 +0000 (06:07 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 7 Jun 2003 06:07:38 +0000 (06:07 +0000)
modules/localcharset
modules/strtod

index ebdf516dfcdb58bcb766aa1ef982534e8aea2413..fc0f6ea33200523f80cbeee0b6042297ddcb8a2f 100644 (file)
@@ -33,13 +33,13 @@ all-local: charset.alias ref-add.sed ref-del.sed
 charset_alias = $(DESTDIR)$(libdir)/charset.alias
 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
 install-exec-local: all-local
-       test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir)
+       test $(GLIBC21) != no || $(mkinstalldirs) $(DESTDIR)$(libdir)
        if test -f $(charset_alias); then \
          sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
          $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
          rm -f $(charset_tmp) ; \
        else \
-         if test @GLIBC21@ = no; then \
+         if test $(GLIBC21) = no; then \
            sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
            $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
            rm -f $(charset_tmp) ; \
@@ -59,12 +59,12 @@ uninstall-local: all-local
        fi
 
 charset.alias: config.charset
-       $(SHELL) $(srcdir)/config.charset '@host@' > t-$@
+       $(SHELL) $(srcdir)/config.charset '$(host)' > t-$@
        mv t-$@ $@
 
 SUFFIXES += .sed .sin
 .sin.sed:
-       sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > t-$@
+       sed -e '/^#/d' -e 's/@''PACKAGE''@/$(PACKAGE)/g' $< > t-$@
        mv t-$@ $@
 
 CLEANFILES += charset.alias ref-add.sed ref-del.sed
@@ -74,4 +74,3 @@ Include:
 
 Maintainer:
 Bruno Haible
-
index 267776f7ddd7807d51da7db24b5d35955b99cc41..a1a450eb79d0cb02fe231560db1634d43e111eab 100644 (file)
@@ -11,11 +11,10 @@ configure.ac:
 gl_FUNC_STRTOD
 
 Makefile.am:
-LIBS += @POW_LIB@
+LIBS += $(POW_LIB)
 
 Include:
 <stdlib.h>
 
 Maintainer:
 all
-