From 52563a4859bd2a35fd644c79f2046e29a268090d Mon Sep 17 00:00:00 2001 From: wei Date: Fri, 21 Sep 2001 12:48:50 +0000 Subject: [PATCH] scripts: Fix error installing access-restricted conf files Do conditional installation of *.conf files that are not always present due to access restrictions --- scripts/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Makefile b/scripts/Makefile index bc98579b..1bcd16a3 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -32,7 +32,7 @@ install: install *.sh -m 755 $(HOME)/bin/ mkdir -p $(HOME)/.jannet - install *.conf $(HOME)/.jannet/ + if [ -f *.conf ]; then install *.conf $(HOME)/.jannet/; fi clean: rm -rf *~ .*.swp core