mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-11 06:10:06 +02:00
13 lines
278 B
Bash
Executable File
13 lines
278 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SYSTEM_SETTINGS_DIR="`finddir B_SYSTEM_SETTINGS_DIRECTORY`"
|
|
|
|
MAN_CONFIG="$SYSTEM_SETTINGS_DIR/man.conf"
|
|
|
|
if [ -f "$MAN_CONFIG" ] && grep -q '/packages/man-' "$MAN_CONFIG"; then
|
|
sed -i -e "s|/packages/man-[-0-9g\.]\{3,\}/cmd.\+/bin/|/bin/|g" \
|
|
$MAN_CONFIG
|
|
fi
|
|
|
|
true
|