aboutsummaryrefslogtreecommitdiff
path: root/common/makefiles/IdlCompilation.gmk
diff options
context:
space:
mode:
authorerikj <none@none>2013-04-04 09:25:58 +0200
committererikj <none@none>2013-04-04 09:25:58 +0200
commit4195024b69595e41a4d78e0de3fdfaecb546cc3b (patch)
treef99c20eda2f6317340c02b97ccfa5e7e7c9d8c1e /common/makefiles/IdlCompilation.gmk
parenta3f0be8ce8f3aef6281d92d67403d4890cb89f6b (diff)
8011372: Remove -p from cp in IdleCompilation.gmk
Reviewed-by: pliden, tbell
Diffstat (limited to 'common/makefiles/IdlCompilation.gmk')
-rw-r--r--common/makefiles/IdlCompilation.gmk2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/makefiles/IdlCompilation.gmk b/common/makefiles/IdlCompilation.gmk
index 2eb77dd..b03ea43 100644
--- a/common/makefiles/IdlCompilation.gmk
+++ b/common/makefiles/IdlCompilation.gmk
@@ -70,7 +70,7 @@ define add_idl_package
$(PREFIXES) \
$4
$(RM) -f $$(addprefix $3/$$($4_TMPDIR)/,$6)
- $(CP) -rp $3/$$($4_TMPDIR)/* $3
+ $(CP) -r $3/$$($4_TMPDIR)/* $3
($(CD) $3/$$($4_TMPDIR) && $(FIND) . -type f | $(SED) 's!\./!$3/!g' | $(NAWK) '{ print $$$$1 ": $4" }' > $5)
$(RM) -rf $3/$$($4_TMPDIR)
endef