summaryrefslogtreecommitdiff
path: root/icc
diff options
context:
space:
mode:
authorPedro Giffuni <pfg@apache.org>2012-01-31 15:35:07 +0000
committerPedro Giffuni <pfg@apache.org>2012-01-31 15:35:07 +0000
commit95e24c24e0cddb06af8fd6db360caa3a5ce2539b (patch)
tree3a477f8384c9da781d882d74f9cf401fb65869f5 /icc
parent9582dbb63439037e2c50cf685e897b9aff5d4ded (diff)
Reduce the dependencies on non standard GNU copy.
Excessive dependence on GNU cp for non-GNU platforms is inconvenient as it involves installing the complete GNU coreutils package. This can be avoided by using less non-portable extensions. - "cp -R" tends to be more portable than "cp -r" - Avoid using "cp -u". At this time this changes are focused on FreeBSD based on the work done already for MacOSX.
Diffstat (limited to 'icc')
-rw-r--r--icc/makefile.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/icc/makefile.mk b/icc/makefile.mk
index c5ca5123efda..bd0725a8563e 100644
--- a/icc/makefile.mk
+++ b/icc/makefile.mk
@@ -42,7 +42,7 @@ CONVERTFILES= \
Contrib$/ICC_utils$/Stubs.h \
Contrib$/ICC_utils$/Vetters.cpp
-CONFIGURE_ACTION= $(GNUCOPY) -r $(BACK_PATH)..$/source$/create_sRGB_profile Contrib$/CmdLine && unzip -o $(BACK_PATH)..$/makefiles.zip
+CONFIGURE_ACTION= $(GNUCOPY) -R $(BACK_PATH)..$/source$/create_sRGB_profile Contrib$/CmdLine && unzip -o $(BACK_PATH)..$/makefiles.zip
BUILD_ACTION=dmake && cd Contrib$/CmdLine$/create_sRGB_profile && $(AUGMENT_LIBRARY_PATH) .$/create_sRGB_profile
# --- Targets ------------------------------------------------------