]> rtime.felk.cvut.cz Git - sysless.git/commitdiff
OMK rules updated - remove -C flag from install command
authorPavel Pisa <pisa@cmp.felk.cvut.cz>
Mon, 4 Oct 2010 21:41:22 +0000 (23:41 +0200)
committerPavel Pisa <pisa@cmp.felk.cvut.cz>
Mon, 4 Oct 2010 21:41:22 +0000 (23:41 +0200)
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 <pisa@cmp.felk.cvut.cz>
Makefile.rules

index ad7e9e3b0eb7b2a6132dc54885b9acc91839c99b..ad7a919da7b309a3bd9909666b46643b17bdea6e 100644 (file)
@@ -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