diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-09 04:39:32 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-09 04:39:32 +0000 |
commit | c312f88e9b124435facf54aacb7821e96e973960 (patch) | |
tree | 803c9103f3d7e1b553bf8636108f0afcb6912260 | |
parent | e418c1e04f612664164841c297ddb97a0f3135bf (diff) | |
download | xine-lib-c312f88e9b124435facf54aacb7821e96e973960.tar.gz xine-lib-c312f88e9b124435facf54aacb7821e96e973960.tar.bz2 |
Fix srcdir != builddir builds.
CVS patchset: 8593
CVS date: 2007/02/09 04:39:32
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index afc847855..fcd4768d8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -81,7 +81,7 @@ slackbuild: STRINGS=$(shell which -- "${CHOST}-strings" 2>/dev/null || which strings 2>/dev/null || false) install-exec-hook: - find $(top_srcdir) -name \*.so | \ + find $(top_builddir) -name \*.so | \ xargs $(STRINGS) | \ egrep '^([-a-z]+/[-+.a-z0-9]+:[^:]+:[^;]+;[ \t]*)+' | \ sed -e 's/:[^;]\+;/\n/g' | \ |