If you are not using linux, this should not affect you. If you are using linux, from this point forward, openrc requires the /run directory to be a mounted tmpfs. If it is, you can run @LIBEXECDIR@/sh/migrate-to-run.sh as root to migrate your dependency tree and state information to the new location. If it is not, you must create the /run directory as root with permissions 755 then reboot your system. reported-by: Maxim Kammerer <mk@dee.su> X-Gentoo-Bug: 401059 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=401059
		
			
				
	
	
		
			33 lines
		
	
	
		
			721 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			721 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # OpenRC Makefile
 | |
| # Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | |
| # Released under the 2-clause BSD license.
 | |
| 
 | |
| include Makefile.inc
 | |
| 
 | |
| SUBDIR=		conf.d doc etc init.d local.d sysctl.d man net scripts sh src
 | |
| 
 | |
| # Build pkgconfig or not
 | |
| MKPKGCONFIG?=	yes
 | |
| ifeq (${MKPKGCONFIG},yes)
 | |
| SUBDIR+=	pkgconfig
 | |
| endif
 | |
| 
 | |
| # We need to ensure that runlevels is done last
 | |
| SUBDIR+=	runlevels
 | |
| 
 | |
| INSTALLAFTER=	_installafter
 | |
| 
 | |
| MK= 		mk
 | |
| include ${MK}/sys.mk
 | |
| include ${MK}/os.mk
 | |
| include ${MK}/subdir.mk
 | |
| include ${MK}/dist.mk
 | |
| include ${MK}/git.mk
 | |
| 
 | |
| _installafter:
 | |
| ifneq ($(OS),Linux)
 | |
| 	${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
 | |
| endif
 | |
| 	${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/tmp
 | |
| 	${ECHO} "${VERSION}${GITVER}" > ${DESTDIR}/${LIBEXECDIR}/version
 |