diff options
author | Cem Keylan <cem@ckyln.com> | 2021-10-11 17:02:26 +0200 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-10-11 17:02:26 +0200 |
commit | c7fb739dd17a861c295c58ca81866d4d02768d12 (patch) | |
tree | 8625148669e313cd6309c159c97056cb758ce691 /extra/info/post-install | |
parent | e533df55fada46b7e017ae1fb8e6154df9d6ea36 (diff) | |
download | repository-c7fb739dd17a861c295c58ca81866d4d02768d12.tar.gz |
info: cleanup symlinks
Diffstat (limited to 'extra/info/post-install')
-rwxr-xr-x[l---------] | extra/info/post-install | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/extra/info/post-install b/extra/info/post-install index e9df43e8..662b5ff5 120000..100755 --- a/extra/info/post-install +++ b/extra/info/post-install @@ -1 +1,5 @@ -../texinfo/post-install
\ No newline at end of file +#!/bin/sh + +find "$CPT_ROOT/usr/share/info" -type f ! -name dir | while read -r file; do + install-info "$file" "$CPT_ROOT/usr/share/info/dir" +done |