diff options
author | Colin Guthrie <cguthrie@mandriva.org> | 2010-12-04 12:01:01 +0000 |
---|---|---|
committer | Colin Guthrie <cguthrie@mandriva.org> | 2010-12-04 13:59:48 +0000 |
commit | a1f1255635ee013c027b981f47d186d83a70d6dd (patch) | |
tree | ffd223375fdcff0750c547e2ac64dc568b6b3134 | |
parent | 675cc0ae0bf3dc0a863dacfeeae0f6fde5222e96 (diff) |
build-sys: Fix make distcheck failure due to udev rules fixed install path
I don't know why this does not honour DESTDIR or similar during distcheck
but this simple enough patch fixes it.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 5385bf32..b8e22eae 100644 --- a/Makefile.am +++ b/Makefile.am @@ -87,3 +87,5 @@ $(top_srcdir)/.version: DISTCLEANFILES = \ po/.intltool-merge-cache + +DISTCHECK_CONFIGURE_FLAGS = --with-udev-rules-dir="$$dc_install_base/lib/udev/rules.d" |