mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-09 02:32:25 +01:00
14 lines
253 B
Bash
14 lines
253 B
Bash
#!/bin/sh
|
|
|
|
mkdir -p etc/xml
|
|
|
|
if [ ! -e etc/xml/catalog ]; then
|
|
xmlcatalog --noout --create etc/xml/catalog
|
|
fi
|
|
|
|
xmlcatalog --noout --add "system" \
|
|
"http://glade.gnome.org/glade-2.0.dtd" \
|
|
/usr/share/xml/libglade/glade-2.0.dtd etc/xml/catalog
|
|
|
|
exit 0
|