mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-31 19:32:03 +00:00
12 lines
207 B
Makefile
12 lines
207 B
Makefile
|
ETCDIR=/etc
|
||
|
EXTDIR=${DESTDIR}${ETCDIR}
|
||
|
MODE=754
|
||
|
DIRMODE=755
|
||
|
CONFMODE=644
|
||
|
|
||
|
install:
|
||
|
install -d -m ${DIRMODE} ${DESTDIR}/lib/lsb
|
||
|
install -m ${CONFMODE} lib/init-functions ${DESTDIR}/lib/lsb
|
||
|
|
||
|
.PHONY: install
|