system/unrtf: Fixed hardcoded /usr/local references

Thanks to B. Watson for the find and fix.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
titopoquito 2011-02-06 12:06:20 -06:00 committed by Robby Workman
parent c3c2cb47b3
commit 277b795b02
2 changed files with 7 additions and 2 deletions

View file

@ -3,6 +3,7 @@
# Slackware build script for unrtf
# Written by by titopoquito (titopoquito@gmail.com)
# fix to replace hard coded links to /usr/local by B. Watson
# Permission to use, copy, modify, and distribute this software for
# any purpose with or without fee is hereby granted, provided that
@ -24,7 +25,7 @@
PRGNAM=unrtf
VERSION=${VERSION:-0.21.1}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@ -69,6 +70,10 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
# some source files have hard coded links to /usr/local - without this the
# compiled unrtf binary complains about missing /usr/local/lib/unrtf/html.conf
sed -i "s,/usr/local/lib,/usr/lib$LIBDIRSUFFIX," src/*
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \

View file

@ -7,4 +7,4 @@ DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="titopoquito"
EMAIL="titopoquito@gmail.com"
APPROVED="Erik Hanson"
APPROVED="rworkman"