From: Pavel Pisa Date: Mon, 4 Oct 2010 21:41:22 +0000 (+0200) Subject: OMK rules updated - remove -C flag from install command X-Git-Url: https://rtime.felk.cvut.cz/gitweb/sysless.git/commitdiff_plain/512e4efc8c3fe2e02c9e329888b623c031de4a36 OMK rules updated - remove -C flag from install command The rules regenerated after Michal Sojka's update. This flag is now useless, as the comparison must be (and is) done before calling install. The -C flag was not available in older versions of install (e.g. on Debian Lenny) so this change allows OMK to be run on older systems. Signed-off-by: Pavel Pisa --- diff --git a/Makefile.rules b/Makefile.rules index ad7e9e3..ad7a919 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -4,7 +4,7 @@ # (C) Copyright 2006, 2007, 2008, 2009, 2010 by Michal Sojka - Czech Technical University, FEE, DCE # # Homepage: http://rtime.felk.cvut.cz/omk/ -# Version: 0.2-26-g802fadc +# Version: 0.2-35-gb9c630c # # The OMK build system is distributed under the GNU General Public # License. See file COPYING for details. @@ -566,7 +566,7 @@ ifneq ($(LN_HEADERS),y) define cp_cmd if ! cmp --quiet $(1) $(2); then \ echo " CP $(1:$(OUTPUT_DIR)/%=%) -> $(2:$(OUTPUT_DIR)/%=%)"; \ - install -C -D $(CPHEADER_FLAGS) $(1) $(2) || exit 1; \ + install -D $(CPHEADER_FLAGS) $(1) $(2) || exit 1; \ fi endef else