Selaa lähdekoodia

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 13 vuotta sitten
vanhempi
commit
f8c5f28a5e
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  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 \