mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 05:36:38 +02:00
nons (no namespaces) version is needed for building PostgreSQL man pages. https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/72853#note_451057
9 lines
185 B
Bash
9 lines
185 B
Bash
#!/bin/sh
|
|
|
|
oldver=${1%-r[0-9]*}
|
|
|
|
if which xmlcatalog > /dev/null; then
|
|
xmlcatalog --noout --del \
|
|
"file:///usr/share/xml/docbook/xsl-stylesheets-$oldver-nons" \
|
|
etc/xml/catalog
|
|
fi
|