Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutchinson@novell.com>2009-01-14 03:51:15 +0300
committerMichael Hutchinson <mhutchinson@novell.com>2009-01-14 03:51:15 +0300
commit3fd37889ffa063d0a088735a7fb485016785003b (patch)
tree3aabdbe2c2d06ff8fac06e026a5a07f76d4c9232 /main/monodevelop.in
parentcc0114f52f0d9ab9b81a1e7072f468cf0fc85c22 (diff)
* main/monodevelop.in: Fix pkgconfig paths. Thanks to Vadim Chekan for
this. * main/mdtool.in: Fix pkgconfig paths. Use /bin/bash, as sh doesn't necessarily support exec -a. svn path=/trunk/monodevelop/; revision=123291
Diffstat (limited to 'main/monodevelop.in')
-rwxr-xr-xmain/monodevelop.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/monodevelop.in b/main/monodevelop.in
index dcefa1b36c..cdd78ecc8a 100755
--- a/main/monodevelop.in
+++ b/main/monodevelop.in
@@ -66,7 +66,7 @@ PKGCONFIG_PREFIX="${PKGCONFIG_PREFIX%%/pkg-config}/.."
MD_PKG_CONFIG_PATH=""
for D in "$PREFIX/.." "$MONO_PREFIX" "$PKGCONFIG_PREFIX" '/usr/local' '/usr'; do
- for PKGDIR in "$D/../lib/pkgconfig" "$D/../lib64/pkgconfig" "$D/../share/pkgconfig"; do
+ for PKGDIR in "$D/lib/pkgconfig" "$D/lib64/pkgconfig" "$D/share/pkgconfig"; do
if [ -d "$PKGDIR" ]; then MD_PKG_CONFIG_PATH="$MD_PKG_CONFIG_PATH:$PKGDIR"; fi
done
done