Explorar el Código

build: Do not assume make supports nested variables

Use @AM_V@ and @AM_DEFAULT_V@ instead of directly using the variables,
so that configure can detect if make supports nested variables and use
valid values for each case.
Guillem Jover hace 13 años
padre
commit
f8c5f28a5e
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      man/Makefile.am

+ 2 - 2
man/Makefile.am

@@ -69,8 +69,8 @@ LINGUAS_DIST = `sed -ne 's/^.*\[po4a_langs\] \(.*\)$$/\1/p' $(srcdir)/po/po4a.cf
 LINGUAS ?= $(LINGUAS_DIST)
 
 
-PO4A_V = $(PO4A_V_$(V))
-PO4A_V_ = $(PO4A_V_$(AM_DEFAULT_VERBOSITY))
+PO4A_V = $(PO4A_V_@AM_V@)
+PO4A_V_ = $(PO4A_V_@AM_DEFAULT_V@)
 PO4A_V_0 = @echo "  PO4A   $@";
 
 PO4A_OPTS = --previous --srcdir $(srcdir) --destdir $(CURDIR) --no-backups \