1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Author: Helmut Grohne <helmut@subdivi.de>
Description: Use libtoolized libtool rather than an external one.
--- mate-power-manager-1.20.2.orig/src/Makefile.am
+++ mate-power-manager-1.20.2/src/Makefile.am
@@ -270,21 +270,21 @@
@GLIB_GENMARSHAL@ $< --prefix=gpm_marshal --header > $@
org.mate.PowerManager.h: org.mate.PowerManager.xml
- libtool --mode=execute dbus-binding-tool \
+ $(LIBTOOL) --mode=execute dbus-binding-tool \
--prefix=gpm_manager \
--mode=glib-server \
--output=org.mate.PowerManager.h \
$(srcdir)/org.mate.PowerManager.xml
org.mate.PowerManager.Backlight.h: org.mate.PowerManager.Backlight.xml
- libtool --mode=execute dbus-binding-tool \
+ $(LIBTOOL) --mode=execute dbus-binding-tool \
--prefix=gpm_backlight \
--mode=glib-server \
--output=org.mate.PowerManager.Backlight.h \
$(srcdir)/org.mate.PowerManager.Backlight.xml
org.mate.PowerManager.KbdBacklight.h: org.mate.PowerManager.KbdBacklight.xml
- libtool --mode=execute dbus-binding-tool \
+ $(LIBTOOL) --mode=execute dbus-binding-tool \
--prefix=gpm_kbd_backlight \
--mode=glib-server \
--output=org.mate.PowerManager.KbdBacklight.h \
|