aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2024-04-10 02:29:29 +0200
committerAlejandro Colomar <alx@kernel.org>2024-04-10 02:29:31 +0200
commit46ced618e694f981af4b7eaf4d1b2455ff2c1738 (patch)
tree74c82b702956b6b86a76004fff3c80505ddc5cf8
parent86a6c03aad10326215cbdcb6a6d8429a22805592 (diff)
downloadman-pages-46ced618e694f981af4b7eaf4d1b2455ff2c1738.tar.gz
man3/, debian/debhelper.in/glibc-doc.links: Move link pages to their place
Scripted change: $ cat debian/debhelper.in/glibc-doc.links \ | while read l; do \ echo $l \ | awk '{print $1}' \ | sed 's,usr/share/man/,.so ,' \ | sed 's,\.gz,,' \ > "$(echo $l \ | awk '{print $2}' \ | sed 's,usr/share/man/,,' \ | sed 's,\.gz,,')"; done; $ rm debian/debhelper.in/glibc-doc.links Link: <https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068188> Link: <https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068166> Link: <https://lore.kernel.org/linux-man/703ec07e-dd2b-bbc6-f1bc-f495e53b764f@gmail.com/T/> Cc: Marcos Fouces <marcos@debian.org> Cc: Sven Joachim <svenjoac@gmx.de> Cc: Bas Couwenberg <sebastic@xs4all.nl> Cc: Andreas Beckmann <anbe@debian.org> Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--debian/debhelper.in/glibc-doc.links17
-rw-r--r--man3/pthread_cond_broadcast.31
-rw-r--r--man3/pthread_cond_destroy.31
-rw-r--r--man3/pthread_cond_signal.31
-rw-r--r--man3/pthread_cond_timedwait.31
-rw-r--r--man3/pthread_cond_wait.31
-rw-r--r--man3/pthread_condattr_destroy.31
-rw-r--r--man3/pthread_getspecific.31
-rw-r--r--man3/pthread_key_delete.31
-rw-r--r--man3/pthread_mutex_destroy.31
-rw-r--r--man3/pthread_mutex_lock.31
-rw-r--r--man3/pthread_mutex_trylock.31
-rw-r--r--man3/pthread_mutex_unlock.31
-rw-r--r--man3/pthread_mutexattr_getkind_np.31
-rw-r--r--man3/pthread_mutexattr_gettype.31
-rw-r--r--man3/pthread_mutexattr_settype.31
-rw-r--r--man3/pthread_setspecific.31
17 files changed, 16 insertions, 17 deletions
diff --git a/debian/debhelper.in/glibc-doc.links b/debian/debhelper.in/glibc-doc.links
deleted file mode 100644
index 046c4269a5..0000000000
--- a/debian/debhelper.in/glibc-doc.links
+++ /dev/null
@@ -1,17 +0,0 @@
-usr/share/man/man3/pthread_condattr_init.3.gz usr/share/man/man3/pthread_condattr_destroy.3.gz
-usr/share/man/man3/pthread_cond_init.3.gz usr/share/man/man3/pthread_cond_signal.3.gz
-usr/share/man/man3/pthread_cond_init.3.gz usr/share/man/man3/pthread_cond_broadcast.3.gz
-usr/share/man/man3/pthread_cond_init.3.gz usr/share/man/man3/pthread_cond_wait.3.gz
-usr/share/man/man3/pthread_cond_init.3.gz usr/share/man/man3/pthread_cond_timedwait.3.gz
-usr/share/man/man3/pthread_cond_init.3.gz usr/share/man/man3/pthread_cond_destroy.3.gz
-usr/share/man/man3/pthread_key_create.3.gz usr/share/man/man3/pthread_getspecific.3.gz
-usr/share/man/man3/pthread_key_create.3.gz usr/share/man/man3/pthread_key_delete.3.gz
-usr/share/man/man3/pthread_key_create.3.gz usr/share/man/man3/pthread_setspecific.3.gz
-usr/share/man/man3/pthread_mutexattr_init.3.gz usr/share/man/man3/pthread_mutexattr_destroy.3.gz
-usr/share/man/man3/pthread_mutexattr_init.3.gz usr/share/man/man3/pthread_mutexattr_settype.3.gz
-usr/share/man/man3/pthread_mutexattr_init.3.gz usr/share/man/man3/pthread_mutexattr_gettype.3.gz
-usr/share/man/man3/pthread_mutexattr_setkind_np.3.gz usr/share/man/man3/pthread_mutexattr_getkind_np.3.gz
-usr/share/man/man3/pthread_mutex_init.3.gz usr/share/man/man3/pthread_mutex_lock.3.gz
-usr/share/man/man3/pthread_mutex_init.3.gz usr/share/man/man3/pthread_mutex_trylock.3.gz
-usr/share/man/man3/pthread_mutex_init.3.gz usr/share/man/man3/pthread_mutex_unlock.3.gz
-usr/share/man/man3/pthread_mutex_init.3.gz usr/share/man/man3/pthread_mutex_destroy.3.gz
diff --git a/man3/pthread_cond_broadcast.3 b/man3/pthread_cond_broadcast.3
new file mode 100644
index 0000000000..0fe85adc16
--- /dev/null
+++ b/man3/pthread_cond_broadcast.3
@@ -0,0 +1 @@
+.so man3/pthread_cond_init.3
diff --git a/man3/pthread_cond_destroy.3 b/man3/pthread_cond_destroy.3
new file mode 100644
index 0000000000..0fe85adc16
--- /dev/null
+++ b/man3/pthread_cond_destroy.3
@@ -0,0 +1 @@
+.so man3/pthread_cond_init.3
diff --git a/man3/pthread_cond_signal.3 b/man3/pthread_cond_signal.3
new file mode 100644
index 0000000000..0fe85adc16
--- /dev/null
+++ b/man3/pthread_cond_signal.3
@@ -0,0 +1 @@
+.so man3/pthread_cond_init.3
diff --git a/man3/pthread_cond_timedwait.3 b/man3/pthread_cond_timedwait.3
new file mode 100644
index 0000000000..0fe85adc16
--- /dev/null
+++ b/man3/pthread_cond_timedwait.3
@@ -0,0 +1 @@
+.so man3/pthread_cond_init.3
diff --git a/man3/pthread_cond_wait.3 b/man3/pthread_cond_wait.3
new file mode 100644
index 0000000000..0fe85adc16
--- /dev/null
+++ b/man3/pthread_cond_wait.3
@@ -0,0 +1 @@
+.so man3/pthread_cond_init.3
diff --git a/man3/pthread_condattr_destroy.3 b/man3/pthread_condattr_destroy.3
new file mode 100644
index 0000000000..ae5c63cd9a
--- /dev/null
+++ b/man3/pthread_condattr_destroy.3
@@ -0,0 +1 @@
+.so man3/pthread_condattr_init.3
diff --git a/man3/pthread_getspecific.3 b/man3/pthread_getspecific.3
new file mode 100644
index 0000000000..307a947527
--- /dev/null
+++ b/man3/pthread_getspecific.3
@@ -0,0 +1 @@
+.so man3/pthread_key_create.3
diff --git a/man3/pthread_key_delete.3 b/man3/pthread_key_delete.3
new file mode 100644
index 0000000000..307a947527
--- /dev/null
+++ b/man3/pthread_key_delete.3
@@ -0,0 +1 @@
+.so man3/pthread_key_create.3
diff --git a/man3/pthread_mutex_destroy.3 b/man3/pthread_mutex_destroy.3
new file mode 100644
index 0000000000..1b7eb83b17
--- /dev/null
+++ b/man3/pthread_mutex_destroy.3
@@ -0,0 +1 @@
+.so man3/pthread_mutex_init.3
diff --git a/man3/pthread_mutex_lock.3 b/man3/pthread_mutex_lock.3
new file mode 100644
index 0000000000..1b7eb83b17
--- /dev/null
+++ b/man3/pthread_mutex_lock.3
@@ -0,0 +1 @@
+.so man3/pthread_mutex_init.3
diff --git a/man3/pthread_mutex_trylock.3 b/man3/pthread_mutex_trylock.3
new file mode 100644
index 0000000000..1b7eb83b17
--- /dev/null
+++ b/man3/pthread_mutex_trylock.3
@@ -0,0 +1 @@
+.so man3/pthread_mutex_init.3
diff --git a/man3/pthread_mutex_unlock.3 b/man3/pthread_mutex_unlock.3
new file mode 100644
index 0000000000..1b7eb83b17
--- /dev/null
+++ b/man3/pthread_mutex_unlock.3
@@ -0,0 +1 @@
+.so man3/pthread_mutex_init.3
diff --git a/man3/pthread_mutexattr_getkind_np.3 b/man3/pthread_mutexattr_getkind_np.3
new file mode 100644
index 0000000000..af2ab9681e
--- /dev/null
+++ b/man3/pthread_mutexattr_getkind_np.3
@@ -0,0 +1 @@
+.so man3/pthread_mutexattr_setkind_np.3
diff --git a/man3/pthread_mutexattr_gettype.3 b/man3/pthread_mutexattr_gettype.3
new file mode 100644
index 0000000000..eadaa9b835
--- /dev/null
+++ b/man3/pthread_mutexattr_gettype.3
@@ -0,0 +1 @@
+.so man3/pthread_mutexattr_init.3
diff --git a/man3/pthread_mutexattr_settype.3 b/man3/pthread_mutexattr_settype.3
new file mode 100644
index 0000000000..eadaa9b835
--- /dev/null
+++ b/man3/pthread_mutexattr_settype.3
@@ -0,0 +1 @@
+.so man3/pthread_mutexattr_init.3
diff --git a/man3/pthread_setspecific.3 b/man3/pthread_setspecific.3
new file mode 100644
index 0000000000..307a947527
--- /dev/null
+++ b/man3/pthread_setspecific.3
@@ -0,0 +1 @@
+.so man3/pthread_key_create.3