summaryrefslogtreecommitdiff
path: root/src/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-10-28 10:24:44 +0000
committerCarl Hetherington <cth@carlh.net>2015-10-28 10:24:44 +0000
commit6dc0cdbd5be3f8f60bd50523501a0bd85666ebda (patch)
tree1897931ca1a054d4181818272d723a81513ac39b /src/dcp.cc
parent34bacd283bd73cf697079459b0ad9e91bca349de (diff)
Don't add external (referenced) assets to the PKL.
Diffstat (limited to 'src/dcp.cc')
-rw-r--r--src/dcp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index 4f1f07df..53d5dd39 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -274,7 +274,7 @@ DCP::write_pkl (Standard standard, string pkl_uuid, XMLMetadata metadata, shared
xmlpp::Element* asset_list = pkl->add_child("AssetList");
BOOST_FOREACH (shared_ptr<Asset> i, assets ()) {
- i->write_to_pkl (asset_list, standard);
+ i->write_to_pkl (asset_list, _directory, standard);
}
if (signer) {