-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
?
Macros.sh
: --mingw
regression fix, ctags
...
... much improved, plus typo fixes. ?`Macros.sh: `:%s/SUSUWU_PROCESS_MINGE/SUSUWU_PROCESS_MINGW/`: typo fix. ?`SUSUWU_SUFFIX_SLASH()`, ?`SUSUWU_AFFIX_DOTSLASH()`: `:%s/$1/${1}/`: style/typo fix. ?`SUSUWU_PRINT()`: style/comment improved. ?`SUSUWU_PROCESS_MINGW()`, ?`SUSUWU_PROCESS_RELEASE_DEBUG()`, ?`SUSUWU_PROCESS_CLEAN_REBUILD()`: `:%s/ -o / -o /` (typo fix). ?`SUSUWU_SETUP_CXX()`: quote `${CROSS_COMP}`. ?`SUSUWU_PROCESS_INCLUDE()`, ?`SUSUWU_BUILD_OBJECTS()`: limit temp variables to `local` scope. ?`SUSUWU_PROCESS_USRBIN()`: to prevent `cp: cannot create regular file '${USRBIN}/${OUTPUT}': Read-only file system`, prefer `USRBIN in ~/`. ?`SUSUWU_BUILD_CTAGS()`: move down to rest of `SUSUWU_BUILD_*()` functions (since now uses `${C_SOURCE_PATH}` and `${CXX_SOURCE_PATH}`, unless you execute as `SUSUWU_BUILD_CTAGS "-flags..." "./path/"`). ?`SUSUWU_TEST_OUTPUT()`: if ` --mingw` but "wine not found", `return 1`. `:%s/$?/$@/`, `:%s/STATUS=$@/STATUS=$?/`: typo fix ("Usage: ... $?" -> "Usage: ... ?@".) ?`build.sh`: ?`SUSUWU_BUILD_CTAGS`: Move down to rest of `SUSUWU_BUILD_*` calls. Now produces `./tags` (which `ex`, `vi`, `vim` can use.) Comment how to use this. ?`SUSUWU_PROCESS_MINGW`: comment how to use this. ?`README.md`: ?`#Contributor-conventionsrules`: English improved, `:%s/Git/`git`/`, `:%s/[Source](#Source),[_C_/_C++_ source](#Cc-source)/`, +"[`sh` source](#Sh-source)". Is followup to: f041ae9 (?`SUSUWU_[UN]INSTALL()`: implement. ?`Macros.sh`: more close to `make` protocols, improve codeflow). Is progress to issues: #18 (support more tools), #21 (full `make` support).
- Loading branch information
1 parent
f041ae9
commit 8cd8fa8
Showing
3 changed files
with
66 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8cd8fa8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since the commit message was not specific about how this fixes MinGW (which is activated with
./build.sh --mingw
):/bin/sh
does not have==
(as/bin/bash
has), thusfixes the comparison to " --mingw".