From: Anthony Minessale Date: Fri, 29 Aug 2008 18:50:42 +0000 (+0000) Subject: only install if the file is NOT there X-Git-Tag: v1.0.6~38^2~352 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59e2f1894e9f3545fb3bdca291b013b4ad183567;p=thirdparty%2Ffreeswitch.git only install if the file is NOT there git-svn-id: http://svn.openzap.org/svn/openzap/trunk@521 a93c3328-9c30-0410-af19-c9cd2b2d52af --- diff --git a/libs/openzap/mod_openzap/Makefile b/libs/openzap/mod_openzap/Makefile index b380a8103a..025e0df927 100644 --- a/libs/openzap/mod_openzap/Makefile +++ b/libs/openzap/mod_openzap/Makefile @@ -13,7 +13,7 @@ $(OZSO): $(OZ_DIR)/.update local_install: cd $(OZ_DIR) && $(MAKE) install ZAP_CFLAGS="$(ALL_CXXFLAGS)" - [ ! -f $(DESTDIR)$(PREFIX)/conf/autoload_configs/openzap.conf.xml ] || cp -f $(OZ_DIR)/conf/openzap.conf.xml $(DESTDIR)$(PREFIX)/conf/autoload_configs + [ -f $(DESTDIR)$(PREFIX)/conf/autoload_configs/openzap.conf.xml ] || cp -f $(OZ_DIR)/conf/openzap.conf.xml $(DESTDIR)$(PREFIX)/conf/autoload_configs local_clean: cd $(OZ_DIR) && $(MAKE) clean