diff options
author | Matthias Clasen <mclasen@redhat.com> | 2007-04-26 06:03:54 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2007-04-26 06:03:54 +0000 |
commit | dc9f906c3db3a57d09de007b72da64bdf9058219 (patch) | |
tree | a416f30a83012b3bece38fd29bab96973076dfee /Makefile.am | |
parent | 8267f588791008971276187404214ce9bd9e3063 (diff) | |
download | gdk-pixbuf-dc9f906c3db3a57d09de007b72da64bdf9058219.tar.gz |
Don't install UNIX-printing headers and support files on non-UNIX
2007-04-26 Matthias Clasen <mclasen@redhat.com>
* Makefile.am:
* gtk/Makefile.am: Don't install UNIX-printing headers and
support files on non-UNIX platforms. (#425655, Vincent Geddes)
svn path=/trunk/; revision=17651
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 609811405..ea2a76ef3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -134,7 +134,11 @@ gdk-$(GDKTARGET)-2.0-uninstalled.pc: gdk-2.0-uninstalled.pc cp gdk-2.0-uninstalled.pc gdk-$(GDKTARGET)-2.0-uninstalled.pc pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA= gdk-pixbuf-2.0.pc gdk-$(GDKTARGET)-2.0.pc gtk+-$(GDKTARGET)-2.0.pc gtk+-unix-print-2.0.pc +pkgconfig_DATA= gdk-pixbuf-2.0.pc gdk-$(GDKTARGET)-2.0.pc gtk+-$(GDKTARGET)-2.0.pc + +if OS_UNIX +pkgconfig_DATA += gtk+-unix-print-2.0.pc +endif DISTCLEANFILES = \ gtk+-unix-print-2.0.pc \ |