diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-02 02:44:13 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-02 02:44:13 -0400 |
commit | a7c19167c184f6410889659954704d5cdb016a59 (patch) | |
tree | 1046eb2bd1fbbb7e267d62cdeff1830a59c8632a | |
parent | 6033f0ba401ff416ffe1805d9f37f12be3b50ee9 (diff) |
move libsystemd-journal source files
-rwxr-xr-x | move.sh | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -106,6 +106,36 @@ move_files() ( touch build-aux/Makefile.{once,each}.{head,tail}/.gitignore mkdir src/libsystemd/libsystemd-journal-internal + + libsystemd_journal_files=( + audit-type.c + audit-type.h + catalog.c + catalog.h + compress.c + compress.h + fsprg.c + fsprg.h + journal-authenticate.c + journal-authenticate.h + journal-def.h + journal-file.c + journal-file.h + journal-internal.h + journal-send.c + journal-vacuum.c + journal-vacuum.h + journal-verify.c + journal-verify.h + lookup3.c + lookup3.h + mmap-cache.c + mmap-cache.h + sd-journal.c + ) + for file in "${libsystemd_journal_files[@]}"; do + mv -T src/{journal,libsystemd/libsystemd-journal-internal}/$file + done ) breakup_makefile() ( |