Skip to content

Commit

Permalink
makefile: fix \ typo
Browse files Browse the repository at this point in the history
Signed-off-by: Douglas Landgraf <[email protected]>
  • Loading branch information
dougsland committed Jul 7, 2024
1 parent 8ec7858 commit 898e2a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ install:
@if ! grep -q '^SHARE_DIR=$(SHAREDIR)' $(DESTDIR)$(CONFIGDIR)/$(CONFIG_FILE); then \
echo 'SHARE_DIR=$(SHAREDIR)' >> $(DESTDIR)$(CONFIGDIR)/$(CONFIG_FILE); \
fi
if [ -f /etc/os-release ]; then \
@if [ -f /etc/os-release ]; then \
. /etc/os-release; \
if [ "$$ID" = "fedora" ] || [ "$$ID" = "centos" ]; then \
if ! rpm -q aardvark-dns >/dev/null 2>&1; then \
sudo dnf install -y aardvark-dns; \
fi
fi
fi \
fi \
fi
@echo "Installation complete."

Expand Down

0 comments on commit 898e2a5

Please sign in to comment.