diff options
author | Carlos Santos <unixmania@gmail.com> | 2020-05-31 12:25:50 -0300 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2020-06-06 18:05:24 +0200 |
commit | 4227a537cecbbd6b0ed744b76653babf4145d0a5 (patch) | |
tree | b89cec8cab4c82689e882e8b5a009a1c3062b31d | |
parent | bdd276c73c05f64340fd7fc33b557f0e88528df7 (diff) |
package template: fix overwrite vs. override confusion
overwrite: "to write on or over; cover with writing" [1]
override: "to take precedence over; preempt or supersede" [2]
1. https://www.dictionary.com/browse/overwrite
2. https://www.dictionary.com/browse/override
Signed-off-by: Carlos Santos <unixmania@gmail.com>
-rw-r--r-- | package/.template/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/.template/Makefile b/package/.template/Makefile index 2c54be734..e753dc84e 100644 --- a/package/.template/Makefile +++ b/package/.template/Makefile @@ -62,7 +62,7 @@ $(eval $(call PKG_template,@UPKG@,@PKG@,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPE #CONFIG_STYLE:= manual # use following to add ./configure options #CONFIGURE_ARGS+= --disable-foo -# overwrite any configure variables +# override any configure variables #CONFIGURE_ENV+= ac_cv_func_setpgrp_void=yes #BUILD_STYLE:= manual #INSTALL_STYLE:= manual |