1configure.ac: call AM_MKINSTALLDIRS to substitute @MKINSTALLDIRS@ 2 3MKINSTALLDIRS is obsolete and doesn't get automatically called. 4 5Force call AM_MKINSTALLDIRS() macro to substitute every @MKINSTALLDIRS@ 6occurence in *.in files. 7 8Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com> 9 10diff -urpN madplay-0.15.2b.orig/configure.ac madplay-0.15.2b/configure.ac 11--- madplay-0.15.2b.orig/configure.ac 2019-04-16 12:06:03.781018755 +0200 12+++ madplay-0.15.2b/configure.ac 2019-04-16 12:07:48.399162610 +0200 13@@ -146,6 +146,10 @@ ALL_LINGUAS="en es fr hr no" 14 AM_GNU_GETTEXT([use-libtool]) 15 AM_GNU_GETTEXT_VERSION(0.14.1) 16 17+dnl Substitute MKINSTALLDIRS 18+ 19+AM_MKINSTALLDIRS() 20+ 21 dnl Checks for header files. 22 23 AC_HEADER_STDC 24