diff options
author | Lauri Tirkkonen <lotheac@iki.fi> | 2016-01-22 18:50:53 +0200 |
---|---|---|
committer | Lauri Tirkkonen <lotheac@iki.fi> | 2016-01-22 18:55:55 +0200 |
commit | 31aff441cea3f82694a07d4461c05e5ab1e978ed (patch) | |
tree | 73ae24e1de8c4a5ded94b7b032c6ce2e1341eef9 /Makefile.install | |
parent | e737e32fd10ee77556648a4f05aaaddad30f0087 (diff) | |
download | openblas-31aff441cea3f82694a07d4461c05e5ab1e978ed.tar.gz openblas-31aff441cea3f82694a07d4461c05e5ab1e978ed.tar.bz2 openblas-31aff441cea3f82694a07d4461c05e5ab1e978ed.zip |
use $(AWK) in Makefile.install and switch it to nawk
Diffstat (limited to 'Makefile.install')
-rw-r--r-- | Makefile.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.install b/Makefile.install index 9814302b0..25783e3be 100644 --- a/Makefile.install +++ b/Makefile.install @@ -29,7 +29,7 @@ install : lib.grd #for inc @echo \#ifndef OPENBLAS_CONFIG_H > $(DESTDIR)$(OPENBLAS_INCLUDE_DIR)/openblas_config.h @echo \#define OPENBLAS_CONFIG_H >> $(DESTDIR)$(OPENBLAS_INCLUDE_DIR)/openblas_config.h - @awk 'NF {print $$1, "OPENBLAS_"$$2, $$3}' config_last.h >> $(DESTDIR)$(OPENBLAS_INCLUDE_DIR)/openblas_config.h + @$(AWK) 'NF {print $$1, "OPENBLAS_"$$2, $$3}' config_last.h >> $(DESTDIR)$(OPENBLAS_INCLUDE_DIR)/openblas_config.h @echo \#define OPENBLAS_VERSION \" OpenBLAS $(VERSION) \" >> $(DESTDIR)$(OPENBLAS_INCLUDE_DIR)/openblas_config.h @cat openblas_config_template.h >> $(DESTDIR)$(OPENBLAS_INCLUDE_DIR)/openblas_config.h @echo \#endif \/\* OPENBLAS_CONFIG_H \*\/ >> $(DESTDIR)$(OPENBLAS_INCLUDE_DIR)/openblas_config.h |