summary refs log tree commit diff
path: root/doc/pdf/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2022-09-18 21:06:03 -0400
committerJune McEnroe <june@causal.agency>2022-09-18 21:06:03 -0400
commitf0e37be5c6c7f02892e542659c7a63c1008c7046 (patch)
tree1b3f838c69bc06bc9a2a2c761e825c949c5385a3 /doc/pdf/Makefile
parentFix name in zlib mdoc pages (diff)
downloadsrc-f0e37be5c6c7f02892e542659c7a63c1008c7046.tar.gz
src-f0e37be5c6c7f02892e542659c7a63c1008c7046.zip
Remove doc/pdf
Linkrot.
Diffstat (limited to 'doc/pdf/Makefile')
-rw-r--r--doc/pdf/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/doc/pdf/Makefile b/doc/pdf/Makefile
deleted file mode 100644
index 7afbdcf2..00000000
--- a/doc/pdf/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-PDFS += abi.pdf
-PDFS += c11.pdf
-PDFS += elf.pdf
-PDFS += intel-64-opt.pdf
-PDFS += intel-64-sdm-vol-1.pdf
-PDFS += intel-64-sdm-vol-2.pdf
-PDFS += intel-64-sdm-vol-3.pdf
-PDFS += intel-64-sdm-vol-4.pdf
-PDFS += multiboot.pdf
-
-ELF = https://refspecs.linuxbase.org/elf
-INTEL = https://software.intel.com/sites/default/files/managed
-
-URL.abi.pdf = ${ELF}/x86_64-abi-0.99.pdf
-URL.c11.pdf = http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1570.pdf
-URL.elf.pdf = ${ELF}/elf.pdf
-URL.intel-64-opt.pdf = ${INTEL}/9e/bc/64-ia-32-architectures-optimization-manual.pdf
-URL.intel-64-sdm-vol-1.pdf = ${INTEL}/a4/60/253665-sdm-vol-1.pdf
-URL.intel-64-sdm-vol-2.pdf = ${INTEL}/a4/60/325383-sdm-vol-2abcd.pdf
-URL.intel-64-sdm-vol-3.pdf = ${INTEL}/a4/60/325384-sdm-vol-3abcd.pdf
-URL.intel-64-sdm-vol-4.pdf = ${INTEL}/22/0d/335592-sdm-vol-4.pdf
-URL.multiboot.pdf = https://www.gnu.org/software/grub/manual/multiboot/multiboot.pdf
-
-all: ${PDFS}
-
-${PDFS}:
-	curl -Lf -o $@ ${URL.$@}
-	chmod a-w $@
-
-clean:
-	rm -f ${PDFS}
t -- a ""; space=" "; printf "<%s>" "$@"$space > bash: <a><> > dash 0.5.8: <a>< > > dash 0.5.9.1: <a>< > > dash patched: <a><> This is actually composed of two bugs. First of all our tracking of quotemark is wrong so anything after "$@" becomes quoted. Once we fix that then the problem is that the first space character after "$@" is not recognised as an IFS. This patch fixes both. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> 2018-03-25Revert "[BUILTIN] Remove unnecessary restoration of format string in printf"Herbert Xu This reverts commit 7bb413255368e94395237d789f522891093c5774. The commit breaks printf with more than argument. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> 2018-03-22parser: Fix backquote support in here-document EOF markHerbert Xu