Move all patches to templates/$pkgname/patches.
There's no need to set patch_files/patch_args anymore, all patches in this directory will be applied with -Np0 and they have .diff or .patch (and .gz/.bz2) extension. --HG-- extra : convert_revision : 8d516c033fe34db94ebbcc84c246e84fc96ed901
This commit is contained in:
parent
cc5ccaed3d
commit
85a7ceb76f
71 changed files with 1 additions and 297 deletions
39
templates/sysklogd/patches/fix_installation.diff
Normal file
39
templates/sysklogd/patches/fix_installation.diff
Normal file
|
@ -0,0 +1,39 @@
|
|||
--- Makefile.orig 2008-12-15 02:35:56.000000000 +0100
|
||||
+++ Makefile 2008-12-15 02:38:10.000000000 +0100
|
||||
@@ -27,10 +27,10 @@ SKFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fo
|
||||
LDFLAGS= -s
|
||||
|
||||
# Look where your install program is.
|
||||
-INSTALL = /usr/bin/install
|
||||
+INSTALL = install
|
||||
|
||||
# Destination paths, set prefix=/opt if required
|
||||
-BINDIR = $(prefix)/usr/sbin
|
||||
+BINDIR = $(prefix)/sbin
|
||||
MANDIR = $(prefix)/usr/share/man
|
||||
|
||||
# There is one report that under an all ELF system there may be a need to
|
||||
@@ -127,14 +127,17 @@ clobber: clean
|
||||
rm -f syslogd klogd ksym syslog_tst oops_test TAGS tsyslogd tklogd
|
||||
|
||||
install_exec: syslogd klogd
|
||||
- ${INSTALL} -m 500 -s syslogd ${BINDIR}/syslogd
|
||||
- ${INSTALL} -m 500 -s klogd ${BINDIR}/klogd
|
||||
+ ${INSTALL} -d ${BINDIR}
|
||||
+ ${INSTALL} -s syslogd ${BINDIR}/syslogd
|
||||
+ ${INSTALL} -s klogd ${BINDIR}/klogd
|
||||
|
||||
install_man:
|
||||
- ${INSTALL} -o ${MAN_USER} -g ${MAN_GROUP} -m ${MAN_PERMS} sysklogd.8 ${MANDIR}/man8/sysklogd.8
|
||||
- ${INSTALL} -o ${MAN_USER} -g ${MAN_GROUP} -m ${MAN_PERMS} syslogd.8 ${MANDIR}/man8/syslogd.8
|
||||
- ${INSTALL} -o ${MAN_USER} -g ${MAN_GROUP} -m ${MAN_PERMS} syslog.conf.5 ${MANDIR}/man5/syslog.conf.5
|
||||
- ${INSTALL} -o ${MAN_USER} -g ${MAN_GROUP} -m ${MAN_PERMS} klogd.8 ${MANDIR}/man8/klogd.8
|
||||
+ ${INSTALL} -d ${MANDIR}/man5
|
||||
+ ${INSTALL} -d ${MANDIR}/man8
|
||||
+ ${INSTALL} -m ${MAN_PERMS} sysklogd.8 ${MANDIR}/man8/sysklogd.8
|
||||
+ ${INSTALL} -m ${MAN_PERMS} syslogd.8 ${MANDIR}/man8/syslogd.8
|
||||
+ ${INSTALL} -m ${MAN_PERMS} syslog.conf.5 ${MANDIR}/man5/syslog.conf.5
|
||||
+ ${INSTALL} -m ${MAN_PERMS} klogd.8 ${MANDIR}/man8/klogd.8
|
||||
|
||||
obj-m += oops.o
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue