diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-10-18 10:07:43 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-10-18 10:07:43 +0000 |
commit | 49f0dd0fcb64746b1ef06e094f2fa8091c23637c (patch) | |
tree | 86f964fdcaea6ec3da6036b8f68aff37f4f4dc7b /Rules.mak | |
parent | 1381777907fbd50582e7a5ecd950ca26ca56b26f (diff) |
Peter Kjellerstedt writes:
install.patch:
* Define $(INSTALL) as install in Rules.mak.
* Change all occurrences of install into $(INSTALL).
* Change all occurrences of mkdir -p into $(INSTALL) -d.
install -d is already used in a number of places so
this should not be an additional compatibility problem.
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -43,6 +43,8 @@ LD= $(CROSS)ld NM= $(CROSS)nm STRIPTOOL= $(CROSS)strip +INSTALL= install + # Select the compiler needed to build binaries for your development system HOSTCC=gcc HOSTCFLAGS=-O2 -Wall |