summaryrefslogtreecommitdiff
path: root/gdk
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2004-08-25 16:21:15 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-08-25 16:21:15 +0000
commit17cf070553a025e0dac3206d7019ff52a9a2e8fb (patch)
tree53e8390aee31df5b72b831fe28126e9fb9b4b48e /gdk
parentf1d9c777fab3688a9f832669a6cdfb3c443d3573 (diff)
downloadgdk-pixbuf-17cf070553a025e0dac3206d7019ff52a9a2e8fb.tar.gz
Diffstat (limited to 'gdk')
-rw-r--r--gdk/Makefile.am4
-rwxr-xr-xgdk/abicheck.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/gdk/Makefile.am b/gdk/Makefile.am
index c8578a00f..bf0be689b 100644
--- a/gdk/Makefile.am
+++ b/gdk/Makefile.am
@@ -177,10 +177,10 @@ uninstall-ms-lib:
endif
gdk.def: gdk.symbols
- (echo -e EXPORTS; cpp -P -DGDK_WINDOWING_WIN32 -DINCLUDE_VARIABLES gdk.symbols | sed -e '/^$$/d' -e 's/^/\t/') > gdk.def
+ (echo -e EXPORTS; cpp -P -DGDK_WINDOWING_WIN32 -DINCLUDE_VARIABLES $(srcdir)/gdk.symbols | sed -e '/^$$/d' -e 's/^/\t/') > gdk.def
gdkalias.h: gdk.symbols
- ./makegdkalias.pl <gdk.symbols > gdkalias.h
+ ./makegdkalias.pl < $(srcdir)/gdk.symbols > gdkalias.h
if OS_UNIX
TESTS = abicheck.sh
diff --git a/gdk/abicheck.sh b/gdk/abicheck.sh
index c0a7e33ee..8f39943ef 100755
--- a/gdk/abicheck.sh
+++ b/gdk/abicheck.sh
@@ -1,5 +1,5 @@
#! /bin/sh
-cpp -P -DGDK_WINDOWING_X11 gdk.symbols | sed -e '/^$/d' | sort > expected-abi
+cpp -P -DGDK_WINDOWING_X11 ${srcdir:-.}/gdk.symbols | sed -e '/^$/d' | sort > expected-abi
nm -D .libs/libgdk-x11-2.0.so | grep " T " | cut -c12- | sort > actual-abi
-diff -u expected-abi actual-abi
+diff -u expected-abi actual-abi && rm expected-abi actual-abi