diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-10-03 15:37:15 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-10-03 15:37:15 -0400 |
commit | 5c9f65a67294e3e7b2759306c182b7eedc93093d (patch) | |
tree | f8bf3c86251872294d8ec2184209fcd0830c561d /ikiwiki-transition | |
parent | dc4e44adf13bc20c0a801f2b176370f330841098 (diff) | |
download | ikiwiki-5c9f65a67294e3e7b2759306c182b7eedc93093d.tar ikiwiki-5c9f65a67294e3e7b2759306c182b7eedc93093d.tar.gz |
set dependency hash value properly for new dependency types
Just "1" won't cut it anymore; we need to list all the dependency types.
Diffstat (limited to 'ikiwiki-transition')
-rwxr-xr-x | ikiwiki-transition | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ikiwiki-transition b/ikiwiki-transition index 8a20cf655..c50a748e8 100755 --- a/ikiwiki-transition +++ b/ikiwiki-transition @@ -299,7 +299,7 @@ sub oldloadindex { $pagemtime{$page}=$items{mtime}[0]; $oldlinks{$page}=[@{$items{link}}]; $links{$page}=[@{$items{link}}]; - $depends{$page}={ $items{depends}[0] => 1 } if exists $items{depends}; + $depends{$page}={ $items{depends}[0] => $IkiWiki::DEPEND_CONTENT | $IkiWiki::DEPEND_EXISTS } if exists $items{depends}; $destsources{$_}=$page foreach @{$items{dest}}; $renderedfiles{$page}=[@{$items{dest}}]; $pagecase{lc $page}=$page; |