diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2019-04-17 05:58:06 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2019-04-17 05:58:06 +0000 |
commit | 12e7d523698a5bc6c259e4cc98e672c93938c390 (patch) | |
tree | fae628abf56ec4c8501dd2a8beed1469f516000f /cad/lepton-eda/Makefile | |
parent | e78f7bf6b66d3a8c0e93acba1adff3ad81fb046b (diff) | |
download | ports-12e7d523698a5bc6c259e4cc98e672c93938c390.tar.gz ports-12e7d523698a5bc6c259e4cc98e672c93938c390.zip |
Notes
Diffstat (limited to 'cad/lepton-eda/Makefile')
-rw-r--r-- | cad/lepton-eda/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/cad/lepton-eda/Makefile b/cad/lepton-eda/Makefile index 720fc9ff9d18..1adebe66485b 100644 --- a/cad/lepton-eda/Makefile +++ b/cad/lepton-eda/Makefile @@ -55,7 +55,15 @@ NLS_USES= gettext-runtime # work around for errors while running # build-tools/icon-theme-installer: # -# Cannot find 'install -m 0644'; You probably want to pass -x $(INSTALL_DATA) +# Cannot find 'install -m 0644'; You probably want to pass -x ${INSTALL_DATA} +# +# +# NOTE: in the error message above (I wanted to show it +# verbatim), INSTALL_DATA actually is enclosed in +# parenthesis, not in curly brackets. +# I had to change it to appease portlint(1), which does +# not ignore comments in makefiles. +# # # for 3 dirs (attrib/data, liblepton/data, schematic/data) # the following lines should be in the generated Makefile: |