From 94deeb18240f9d857a6e7f9662c3f9fac3bc2b33 Mon Sep 17 00:00:00 2001 From: hpa Date: Wed, 16 Apr 2003 20:17:07 +0000 Subject: [PATCH] [ foo ] && bar results in exit 1 if not foo --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b6237ef..95211e0 100644 --- a/Makefile +++ b/Makefile @@ -182,7 +182,7 @@ install-lib: installer install -m 644 -c $(INSTALL_LIB) $(INSTALLROOT)$(LIBDIR) install -m 644 -c $(INSTALL_INC) $(INSTALLROOT)$(INCDIR) cd $(INSTALLROOT)$(LIBDIR) && ln -sf $(LIB_SO) libsyslinux.so - [ -z '$(INSTALLROOT)' ] && ldconfig + if [ -z '$(INSTALLROOT)' ]; then ldconfig; fi install-all: install install-all -- 2.7.4