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:
parent
2b4d72f009
commit
207c72b0f9
1 changed files with 1 additions and 1 deletions
|
@ -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"; \
|
||||
|
|
Loading…
Add table
Reference in a new issue