summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Wendel <lanius@gentoo.org>2005-02-16 15:14:49 +0000
committerHeinrich Wendel <lanius@gentoo.org>2005-02-16 15:14:49 +0000
commita92231a58526d9542118c07058a39a0572c6aeae (patch)
treead7d03c7001ab60625c57e78e9575494adeadac1 /x11-libs/motif-config/files
parentfixes fixes fixes (diff)
downloadgentoo-2-a92231a58526d9542118c07058a39a0572c6aeae.tar.gz
gentoo-2-a92231a58526d9542118c07058a39a0572c6aeae.tar.bz2
gentoo-2-a92231a58526d9542118c07058a39a0572c6aeae.zip
fixes...
(Portage version: 2.0.51-r15)
Diffstat (limited to 'x11-libs/motif-config/files')
-rwxr-xr-xx11-libs/motif-config/files/motif-config-0.18
1 files changed, 4 insertions, 4 deletions
diff --git a/x11-libs/motif-config/files/motif-config-0.1 b/x11-libs/motif-config/files/motif-config-0.1
index 12dcaf7f8103..62c2c63adcaf 100755
--- a/x11-libs/motif-config/files/motif-config-0.1
+++ b/x11-libs/motif-config/files/motif-config-0.1
@@ -179,7 +179,7 @@ get_lib_path() {
fi
name=`cat ${PROFILE_PATH}/${profile} 2> /dev/null`
if [ $? -eq 1 ]; then
- eerror "motif-config: No such profile: $profile"
+ eerror "$0: No such profile: $profile"
else
echo "/usr/$LIBDIR/${name}/"
exit 0
@@ -194,7 +194,7 @@ get_inc_path() {
fi
name=`cat ${PROFILE_PATH}/${profile} 2> /dev/null`
if [ $? -eq 1 ]; then
- eerror "motif-config: No such profile: $profile"
+ eerror "$0: No such profile: $profile"
else
echo "/usr/include/${name}/"
exit 0
@@ -209,7 +209,7 @@ get_cflags() {
fi
name=`cat ${PROFILE_PATH}/${profile} 2> /dev/null`
if [ $? -eq 1 ]; then
- eerror "motif-config: No such profile: $profile"
+ eerror "$0: No such profile: $profile"
else
echo "-I/usr/include/${name}/"
exit 0
@@ -224,7 +224,7 @@ get_libs() {
fi
name=`cat ${PROFILE_PATH}/${profile} 2> /dev/null`
if [ $? -eq 1 ]; then
- eerror "motif-config: No such profile: $profile"
+ eerror "$0: No such profile: $profile"
else
echo "-L/usr/$LIBDIR/${name}/"
exit 0