diff options
| author | Keith Packard <keithp@keithp.com> | 2013-02-09 19:24:18 -0800 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2013-02-10 00:30:32 -0800 | 
| commit | 518b16f64f4be096ceff13ab31b96d6909fe3ae2 (patch) | |
| tree | 9aca5f87ad4a9fd0f8188c9e08860a3e1996f1b0 | |
| parent | 41ede0267250a1d3b26e19cc9dd78f32609f7f0f (diff) | |
altoslib: Fix altoslib install
Was using AltosLibdir in several places still
Signed-off-by: Keith Packard <keithp@keithp.com>
| -rw-r--r-- | altoslib/Makefile.am | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/altoslib/Makefile.am b/altoslib/Makefile.am index 0b09102c..74c642d6 100644 --- a/altoslib/Makefile.am +++ b/altoslib/Makefile.am @@ -90,9 +90,9 @@ clean-local:  install-altoslibJAVA: $(JAR)  	@$(NORMAL_INSTALL) -	test -z "$(AltosLibdir)" || $(MKDIR_P) "$(DESTDIR)$(AltosLibdir)" -	echo " $(INSTALL_DATA)" "$<" "'$(DESTDIR)$(AltosLibdir)/$(JAR)"; \ -	$(INSTALL_DATA) "$<" "$(DESTDIR)$(AltosLibdir)" +	test -z "$(altoslibdir)" || $(MKDIR_P) "$(DESTDIR)$(altoslibdir)" +	echo " $(INSTALL_DATA)" "$<" "'$(DESTDIR)$(altoslibdir)/$(JAR)"; \ +	$(INSTALL_DATA) "$<" "$(DESTDIR)$(altoslibdir)"  bin:  	mkdir -p bin | 
