From: Dmitry V. Levin Date: Tue, 16 May 2017 02:11:35 +0000 (+0000) Subject: Move errnoent.sh, signalent.sh, and syscallent.sh to maint subdirectory X-Git-Tag: v4.17~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d70a3112a0f6fdee5877c10b965b1284713dd3e9;p=strace Move errnoent.sh, signalent.sh, and syscallent.sh to maint subdirectory Also do not include them into release tarballs. These files are intended for developers who are expected to use a git repository. * errnoent.sh: Move to maint subdirectory. * signalent.sh: Likewise. * syscallent.sh: Likewise. * HACKING-scripts: Update. * Makefile.am (EXTRA_DIST): Remove errnoent.sh, signalent.sh, and syscallent.sh. --- diff --git a/HACKING-scripts b/HACKING-scripts index 1220fdd9..e0d68317 100644 --- a/HACKING-scripts +++ b/HACKING-scripts @@ -19,7 +19,7 @@ asrc=$ksrc/arch/blackfin/include To use the errnoent.sh script, give it all the headers that might contain appropriate errno values. Excessive headers are not a problem. The resulting output should be directly usable without modification. - sh ./errnoent.sh \ + sh ./maint/errnoent.sh \ $ksrc/include/linux/*errno*.h \ $ksrc/include/asm-generic/*errno*.h \ $asrc/asm/*errno*.h \ @@ -44,7 +44,7 @@ merging should be used to produce the final ioctlent0.h header. To use the signalent.sh script, give it all the headers that might contain appropriate signal values. Excessive headers are not a problem. The resulting output should be directly usable without modification. - sh ./signalent.sh \ + sh ./maint/signalent.sh \ $asrc/asm/signal.h \ > signalent.h @@ -53,6 +53,6 @@ system call numbers. The resulting output is useful as a template for creating a proper header as it can really only detect the system call number and its name. It has no way of knowing the number of arguments or strace flags for decoding them (yet?). - sh ./syscallent.sh \ + sh ./maint/syscallent.sh \ $asrc/asm/unistd.h \ > syscallent.h diff --git a/Makefile.am b/Makefile.am index a36435ea..ff0a7d99 100644 --- a/Makefile.am +++ b/Makefile.am @@ -309,7 +309,6 @@ EXTRA_DIST = \ debian/strace64.install \ debian/strace64.manpages \ debian/watch \ - errnoent.sh \ generate_sen.sh \ ioctl_iocdef.c \ ioctlsort.c \ @@ -807,11 +806,9 @@ EXTRA_DIST = \ mpers_test.sh \ mpers_xlat.h \ scno.head \ - signalent.sh \ strace-graph \ strace-log-merge \ strace.spec \ - syscallent.sh \ $(XLAT_INPUT_FILES) \ $(XLAT_HEADER_FILES) \ xlat/gen.sh \ diff --git a/errnoent.sh b/maint/errnoent.sh similarity index 100% rename from errnoent.sh rename to maint/errnoent.sh diff --git a/signalent.sh b/maint/signalent.sh similarity index 100% rename from signalent.sh rename to maint/signalent.sh diff --git a/syscallent.sh b/maint/syscallent.sh similarity index 100% rename from syscallent.sh rename to maint/syscallent.sh