Skip to content

Commit 020cc96

Browse files
author
Massimiliano Pala
committed
Fixed automake/autoconf script issue.
1 parent 5a55973 commit 020cc96

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

etc/Makefile.am

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ install-data-local:
4949
if test -f $$file; then \
5050
$(INSTALL_DATA) $$file $(DESTDIR)$(exec_prefix)/etc/libpki/store.d; \
5151
fi \
52-
done \
53-
@for file in $(CONFIGS) ; do \
54-
if test -f $$file; then \
55-
$(INSTALL_DATA) $$file $(DESTDIR)$(exec_prefix)/etc/libpki; \
56-
fi \
57-
done \
52+
done
53+
@for file in $(CONFIGS) ; do \
54+
if test -f $$file; then \
55+
$(INSTALL_DATA) $$file $(DESTDIR)$(exec_prefix)/etc/libpki; \
56+
fi \
57+
done
5858
@$(INSTALL_DATA) $(PKI_CONFIG) $(DESTDIR)$(exec_prefix)/etc
5959

6060

etc/Makefile.in

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -613,12 +613,12 @@ install-data-local:
613613
if test -f $$file; then \
614614
$(INSTALL_DATA) $$file $(DESTDIR)$(exec_prefix)/etc/libpki/store.d; \
615615
fi \
616-
done \
617-
@for file in $(CONFIGS) ; do \
618-
if test -f $$file; then \
619-
$(INSTALL_DATA) $$file $(DESTDIR)$(exec_prefix)/etc/libpki; \
620-
fi \
621-
done \
616+
done
617+
@for file in $(CONFIGS) ; do \
618+
if test -f $$file; then \
619+
$(INSTALL_DATA) $$file $(DESTDIR)$(exec_prefix)/etc/libpki; \
620+
fi \
621+
done
622622
@$(INSTALL_DATA) $(PKI_CONFIG) $(DESTDIR)$(exec_prefix)/etc
623623

624624
# Tell versions [3.59,3.63) of GNU make to not export all variables.

0 commit comments

Comments
 (0)