Makefile.am: Use '$(localstatedir)' instead of '${localstatedir}'

In the rule to make the 'calibrations' directory during installation,
use Make variable '$(localstatedir)' instead of shell variable
'${localstatedir}'.  Also remove an unnecessary '/' after '$(DESTDIR)'
in the rule.
This commit is contained in:
Ian Abbott 2014-04-04 15:03:25 +01:00
parent 2b4d72f009
commit 207c72b0f9
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ DISTCHECK_CONFIGURE_FLAGS = RUBY_PREFIX='$${prefix}' --disable-ruby-binding
## create the calibrations directory during installation
install-data-local:
$(MKDIR_P) "$(DESTDIR)/${localstatedir}/lib/comedi/calibrations"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/comedi/calibrations"
dist-hook:
@if test -d "$(srcdir)/.git"; \