summaryrefslogtreecommitdiff
path: root/gdk-pixbuf
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-04-29 17:59:07 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-04-29 17:59:07 +0000
commitb75a8a1512a4c25127a9cfbc2df2c463cc199141 (patch)
tree819a2c327878a164e715e763c3123bc93b673728 /gdk-pixbuf
parent6824418b270f8c544af24fc4a72461827aeb10fe (diff)
downloadgdk-pixbuf-b75a8a1512a4c25127a9cfbc2df2c463cc199141.tar.gz
Check for nm.
2005-04-29 Matthias Clasen <mclasen@redhat.com> * configure.in: Check for nm. * gtk/Makefile.am: Use $(NM), not nm directly. (#301299, Nguyen Thai Ngoc Duy)
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r--gdk-pixbuf/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk-pixbuf/Makefile.am b/gdk-pixbuf/Makefile.am
index 9837974c9..3dccc1d2f 100644
--- a/gdk-pixbuf/Makefile.am
+++ b/gdk-pixbuf/Makefile.am
@@ -19,8 +19,8 @@ install-libtool-import-lib:
# (Unfortunately the GNU linker doesn't yet understand the PRIVATE
# directive in .def files.)
for entry in `grep PRIVATE gdk_pixbuf.def | sed -e 's/PRIVATE//'`; do \
- file=`nm -A .libs/libgdk_pixbuf-$(GTK_API_VERSION).dll.a | tr -d '\r' | grep -E $$entry'$$' | head -n 1 | cut -d: -f2`; \
- ar d .libs/libgdk_pixbuf-$(GTK_API_VERSION).dll.a $$file; \
+ file=`$(NM) -A .libs/libgdk_pixbuf-$(GTK_API_VERSION).dll.a | tr -d '\r' | grep -E $$entry'$$' | head -n 1 | cut -d: -f2`; \
+ $(AR) d .libs/libgdk_pixbuf-$(GTK_API_VERSION).dll.a $$file; \
done
$(INSTALL) .libs/libgdk_pixbuf-$(GTK_API_VERSION).dll.a $(DESTDIR)$(libdir)
uninstall-libtool-import-lib: