summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-01-25 12:35:57 +0000
committerOliver Bolte <obo@openoffice.org>2007-01-25 12:35:57 +0000
commit0c4c970074e137cc129cfd45d2f7ee13c922b5b0 (patch)
tree00fea8c56dcb6c5983665ccdd18c9d9ce9a02d6c /fpicker
parent4f29c99d102e232791e7ff5aa9daa8f612370f36 (diff)
INTEGRATION: CWS ause069 (1.7.122); FILE MERGED
2006/11/07 06:07:23 hjs 1.7.122.2: RESYNC: (1.7-1.8); FILE MERGED 2006/10/18 17:10:53 hjs 1.7.122.1: #i70359# remove forced shell calls
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/unx/gnome/makefile.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/fpicker/source/unx/gnome/makefile.mk b/fpicker/source/unx/gnome/makefile.mk
index a941efb950bb..19148f7187fc 100644
--- a/fpicker/source/unx/gnome/makefile.mk
+++ b/fpicker/source/unx/gnome/makefile.mk
@@ -4,9 +4,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.8 $
+# $Revision: 1.9 $
#
-# last change: $Author: rt $ $Date: 2006-10-25 08:51:00 $
+# last change: $Author: obo $ $Date: 2007-01-25 13:35:57 $
#
# The Contents of this file are made available subject to
# the terms of GNU Lesser General Public License Version 2.1.
@@ -58,12 +58,12 @@ PKGCONFIG_MODULES=gtk+-2.0
.INCLUDE : pkg_config.mk
# check gtk version
-GTK_TWO_FOUR:=$(shell +-$(PKGCONFIG) --exists 'gtk+-2.0 >= 2.4.0' && echo ok)
+GTK_TWO_FOUR:=$(shell $(PKGCONFIG) --exists 'gtk+-2.0 >= 2.4.0' && echo ok)
.IF "$(GTK_TWO_FOUR)" != "ok"
dummy:
@echo "Cannot build gtk filepicker because"
- @+-$(PKGCONFIG) --print-errors --exists 'gtk+-2.0 >= 2.4.0'
+ @$(PKGCONFIG) --print-errors --exists 'gtk+-2.0 >= 2.4.0'
.ELSE