diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2004-08-25 16:21:15 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-08-25 16:21:15 +0000 |
commit | 17cf070553a025e0dac3206d7019ff52a9a2e8fb (patch) | |
tree | 53e8390aee31df5b72b831fe28126e9fb9b4b48e /gdk | |
parent | f1d9c777fab3688a9f832669a6cdfb3c443d3573 (diff) | |
download | gdk-pixbuf-17cf070553a025e0dac3206d7019ff52a9a2e8fb.tar.gz |
2.5.2GTK_2_5_2
Diffstat (limited to 'gdk')
-rw-r--r-- | gdk/Makefile.am | 4 | ||||
-rwxr-xr-x | gdk/abicheck.sh | 4 |
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 |