diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2005-01-17 19:37:47 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2005-01-17 19:37:47 +0000 |
commit | c0ec0fbec9b4cbb9563c49ff19eb7302c18a195d (patch) | |
tree | 7edd61be84501b2b95b70164c26406b73da4eef4 /emulators/linux_base-8 | |
parent | Update to a new version of the none ciper patch. The previous version (diff) |
Get the PLIST generation out of do-install and into pre-instal.
Reported by: sf
Diffstat (limited to 'emulators/linux_base-8')
-rw-r--r-- | emulators/linux_base-8/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/emulators/linux_base-8/Makefile b/emulators/linux_base-8/Makefile index b7205815b727..9929f41b49b7 100644 --- a/emulators/linux_base-8/Makefile +++ b/emulators/linux_base-8/Makefile @@ -99,7 +99,7 @@ FALLBACK_ELF_MIB= kern.fallback_elf_brand LINUX_ELF= 3 PREVIOUS_ELF!= /sbin/sysctl -n ${FALLBACK_ELF_MIB} -do-install: +pre-install: # # Handle the loading of the linux loadable kernel module if required. @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL @@ -150,9 +150,8 @@ do-install: cd ${WRKSRC} && ${FIND} -s . -type f -o -type l | \ ${CUT} -c3-999 >> ${PLIST} \ && ${FIND} -d * -type d | ${SED} -e 's:^:@dirrm :' >> ${PLIST} -# -# The real do-install: -# + +do-install: cd ${WRKSRC} && ${FIND} * | ${CPIO} -dmp ${PREFIX} ${FIND} ${PREFIX} -type d -exec ${CHMOD} 755 \{\} \; |