[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lmi-commits] [lmi] odd/multiarch 3e4dbdf 6/6: Change a makefile variabl
From: |
Greg Chicares |
Subject: |
[lmi-commits] [lmi] odd/multiarch 3e4dbdf 6/6: Change a makefile variable's name to improve concinnity |
Date: |
Sun, 7 Apr 2019 10:48:34 -0400 (EDT) |
branch: odd/multiarch
commit 3e4dbdf7a019c42a9199fbdbf7141cb85ff58833
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>
Change a makefile variable's name to improve concinnity
---
GNUmakefile | 2 +-
configuration.make | 12 ++++++------
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/GNUmakefile b/GNUmakefile
index 0a3badc..b36ccbb 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -211,7 +211,7 @@ MAKETARGET = \
touchstone_dir='$(touchstone_dir)' \
toolset='$(toolset)' \
build_type='$(build_type)' \
- platform-makefile='$(platform-makefile)' \
+ platform_makefile='$(platform_makefile)' \
USE_SO_ATTRIBUTES='$(USE_SO_ATTRIBUTES)' \
yyyymmddhhmm='$(yyyymmddhhmm)' \
$(MAKECMDGOALS)
diff --git a/configuration.make b/configuration.make
index fd7e5eb..ab55692 100644
--- a/configuration.make
+++ b/configuration.make
@@ -24,19 +24,19 @@
# Include platform-specific makefile.
ifeq (msys,$(findstring msys,$(LMI_BUILD)))
- platform-makefile := msw_msys.make
+ platform_makefile := msw_msys.make
else ifeq (cygwin,$(findstring cygwin,$(LMI_BUILD)))
- platform-makefile := msw_cygwin.make
+ platform_makefile := msw_cygwin.make
else
ifeq (mingw32,$(findstring mingw32,$(LMI_HOST)))
- platform-makefile := msw_generic.make
+ platform_makefile := msw_generic.make
else
- platform-makefile := posix_fhs.make
+ platform_makefile := posix_fhs.make
endif
endif
-include $(srcdir)/$(platform-makefile)
-$(srcdir)/$(platform-makefile):: ;
+include $(srcdir)/$(platform_makefile)
+$(srcdir)/$(platform_makefile):: ;
################################################################################
- [lmi-commits] [lmi] odd/multiarch updated (e06e543 -> 3e4dbdf), Greg Chicares, 2019/04/07
- [lmi-commits] [lmi] odd/multiarch 3cad4c9 3/6: Write 'export var="value"' on a single line, Greg Chicares, 2019/04/07
- [lmi-commits] [lmi] odd/multiarch 81bb4e6 2/6: Assume makefiles use a POSIX-compatible shell, Greg Chicares, 2019/04/07
- [lmi-commits] [lmi] odd/multiarch 3551a75 1/6: Make $(build_directory) an immediately-expanded variable again, Greg Chicares, 2019/04/07
- [lmi-commits] [lmi] odd/multiarch b94771d 4/6: Distinguish build from host architecture, Greg Chicares, 2019/04/07
- [lmi-commits] [lmi] odd/multiarch 3e4dbdf 6/6: Change a makefile variable's name to improve concinnity,
Greg Chicares <=
- [lmi-commits] [lmi] odd/multiarch f800e93 5/6: Refine directory structure, Greg Chicares, 2019/04/07