#1385 closed defect (invalid)
zip-2.31 "make install" fails
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | high | Milestone: | |
Component: | BOOK | Version: | c-6.0 |
Severity: | trivial | Keywords: | |
Cc: |
Description ¶
file :
unix/Makefile has undefined in BLFS $(INSTALL) var
if we
make prefix=/usr -f unix/Makefile install && install -v -m644 man/zip.1 /usr/share/man/man1
change to
INSTALL=install make prefix=/usr -f unix/Makefile install
all make errors disappear
thanks for your work
Change History (2)
comment:1 by , 20 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
Summary: | aip-2.31 "make install" fails → zip-2.31 "make install" fails |
Note:
See TracTickets
for help on using tickets.
sed -i -e 's@$(INSTALL) man/zip.1@$(INSTALL_PROGRAM) man/zip.1@' \
However, your solution is cleaner.