mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
10 lines
212 B
Bash
Executable File
10 lines
212 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" = "configure" ]; then
|
|
if [ -d /usr/doc -a ! -e /usr/doc/pkg -a -d /usr/share/doc/pkg ]; then
|
|
ln -sf ../share/doc/pkg /usr/doc/pkg
|
|
fi
|
|
fi
|
|
|
|
test -x /usr/bin/update-menus && update-menus
|