diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2012-10-13 13:02:26 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2012-10-13 13:02:26 +0000 |
commit | c62bb441d460975ad8f7e4e05b2230a2f838152f (patch) | |
tree | b264049244f4bf93424f6f6dc8a0dae7ab52bc67 | |
parent | f81da5a0f4871877a0e6a007bfcbbcb64229db43 (diff) |
use $(top_srcdir)/nslcd.h instead of $< to avoid problems with FreeBSD's make
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1785 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r-- | pynslcd/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pynslcd/Makefile.am b/pynslcd/Makefile.am index d005be7..87c0a8d 100644 --- a/pynslcd/Makefile.am +++ b/pynslcd/Makefile.am @@ -44,4 +44,4 @@ constants.py: $(top_srcdir)/nslcd.h Makefile echo "# See that file for details." ; \ echo "" ; \ sed -n 's| */\*.*\*/ *||;s/^.define *\(NSLCD_[A-Z_]*\) */\1 = /p' \ - $< ) > $@ + $(top_srcdir)/nslcd.h ) > $@ |