]> arthur.barton.de Git - netatalk.git/commitdiff
Fix variable interpolation. $(f) to $$f. Difference between autoconf
authorlancel <lancel>
Wed, 17 Oct 2001 03:22:14 +0000 (03:22 +0000)
committerlancel <lancel>
Wed, 17 Oct 2001 03:22:14 +0000 (03:22 +0000)
and shell variables. f is initialized in a shell loop in the Makefile,
so it isn't subject to autoconf variable substitutio, as in $().

config/Makefile.am

index 5c373eaeac6ede2814f3d292cff7e81a7cba78e9..c77ed56b5cea86731114dc68163a0c388c00e1c7 100644 (file)
@@ -51,7 +51,7 @@ pamdir = $(sysconfdir)/pam.d
 install-data-local: install-config-files $(PAMFILES)
        $(mkinstalldirs) $(DESTDIR)$(pamdir)
        for f in $(PAMFILES); do \
-               $(INSTALL_DATA) $(f) $(DESTDIR)$(pamdir)/netatalk; \
+               $(INSTALL_DATA) $$f $(DESTDIR)$(pamdir)/netatalk; \
        done
 
 else