Skip to content

Commit

Permalink
Fixed automake/autoconf script issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Massimiliano Pala committed Aug 16, 2023
1 parent 5a55973 commit 020cc96
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions etc/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ install-data-local:
if test -f $$file; then \
$(INSTALL_DATA) $$file $(DESTDIR)$(exec_prefix)/etc/libpki/store.d; \
fi \
done \
@for file in $(CONFIGS) ; do \
if test -f $$file; then \
$(INSTALL_DATA) $$file $(DESTDIR)$(exec_prefix)/etc/libpki; \
fi \
done \
done
@for file in $(CONFIGS) ; do \
if test -f $$file; then \
$(INSTALL_DATA) $$file $(DESTDIR)$(exec_prefix)/etc/libpki; \
fi \
done
@$(INSTALL_DATA) $(PKI_CONFIG) $(DESTDIR)$(exec_prefix)/etc


12 changes: 6 additions & 6 deletions etc/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -613,12 +613,12 @@ install-data-local:
if test -f $$file; then \
$(INSTALL_DATA) $$file $(DESTDIR)$(exec_prefix)/etc/libpki/store.d; \
fi \
done \
@for file in $(CONFIGS) ; do \
if test -f $$file; then \
$(INSTALL_DATA) $$file $(DESTDIR)$(exec_prefix)/etc/libpki; \
fi \
done \
done
@for file in $(CONFIGS) ; do \
if test -f $$file; then \
$(INSTALL_DATA) $$file $(DESTDIR)$(exec_prefix)/etc/libpki; \
fi \
done
@$(INSTALL_DATA) $(PKI_CONFIG) $(DESTDIR)$(exec_prefix)/etc

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

0 comments on commit 020cc96

Please sign in to comment.