summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-09-07 22:09:36 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-09-07 22:09:36 -0400
commit679bea0d0993ccd497b56f3467fe5ad4d893b680 (patch)
tree50350e16df3a92ed11d1355b7cb5a6a7de576bab /tools
parentb03497941655476dcd2898f586745764b27f90bf (diff)
more
Diffstat (limited to 'tools')
-rwxr-xr-xtools/move.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/move.sh b/tools/move.sh
index 57dd6ddb3e..8a86ede3ee 100755
--- a/tools/move.sh
+++ b/tools/move.sh
@@ -340,6 +340,7 @@ move_files() (
# auto-distribute the stuff
(
mv -t src/libsystemd man/sd*
+ mv -t src/libudev man/udev_*
cd man
for file in *; do
if [[ -d ../src/"${file%%.*}" ]]; then
@@ -349,6 +350,7 @@ move_files() (
fi
done
)
+ mv -T man src/manpages
(
cd units
for file in *; do
@@ -361,20 +363,29 @@ move_files() (
)
(
cd shell-completion/bash
+ mv -T systemctl.in ../../src/systemctl/systemctl.completion.bash.in
+ cat .gitignore >> ../../src/systemctl/.gitignore
+ rm .gitignore
for file in *; do
if [[ -d ../../src/"$file" ]]; then
mv -T "$file" "../../src/$file/$file.completion.bash"
fi
done
)
+ rmdir shell-completion/bash
(
cd shell-completion/zsh
+ mv -T _systemctl.in ../../src/systemctl/systemctl.completion.zsh.in
+ cat .gitignore >> ../../src/systemctl/.gitignore
+ rm .gitignore
for file in _*; do
if [[ -d ../../src/"${file#_}" ]]; then
mv -T "$file" "../../src/${file#_}/${file#_}.completion.zsh"
fi
done
)
+ mv -T shell-completion/zsh src/zsh-completion
+ rmdir shell-completion
# categorize
grp src/grp-boot \