diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-16 17:19:20 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-16 17:19:20 +0000 |
commit | 4711195f553f5583af7d3c28523c9269ad72bbf0 (patch) | |
tree | 3823a8e3bcf08f62f56c57636b2431f0a7dcda5e /net-misc/ipx-utils/files | |
parent | * Added doc IUSE flag. (diff) | |
download | gentoo-2-4711195f553f5583af7d3c28523c9269ad72bbf0.tar.gz gentoo-2-4711195f553f5583af7d3c28523c9269ad72bbf0.tar.bz2 gentoo-2-4711195f553f5583af7d3c28523c9269ad72bbf0.zip |
/proc moves around #67642
Diffstat (limited to 'net-misc/ipx-utils/files')
-rw-r--r-- | net-misc/ipx-utils/files/digest-ipx-utils-1.1-r1 (renamed from net-misc/ipx-utils/files/digest-ipx-utils-1.1) | 0 | ||||
-rw-r--r-- | net-misc/ipx-utils/files/ipx-utils-1.1-makefile.patch (renamed from net-misc/ipx-utils/files/ipx-utils-1.1-gentoo.diff) | 2 | ||||
-rw-r--r-- | net-misc/ipx-utils/files/ipx-utils-1.1-proc.patch | 13 |
3 files changed, 14 insertions, 1 deletions
diff --git a/net-misc/ipx-utils/files/digest-ipx-utils-1.1 b/net-misc/ipx-utils/files/digest-ipx-utils-1.1-r1 index dda49eb20af9..dda49eb20af9 100644 --- a/net-misc/ipx-utils/files/digest-ipx-utils-1.1 +++ b/net-misc/ipx-utils/files/digest-ipx-utils-1.1-r1 diff --git a/net-misc/ipx-utils/files/ipx-utils-1.1-gentoo.diff b/net-misc/ipx-utils/files/ipx-utils-1.1-makefile.patch index 0d7b4a53d000..e609823134cc 100644 --- a/net-misc/ipx-utils/files/ipx-utils-1.1-gentoo.diff +++ b/net-misc/ipx-utils/files/ipx-utils-1.1-makefile.patch @@ -6,7 +6,7 @@ do \ - install --strip $$i /sbin; \ - install $$i.8 /usr/man/man8; \ -+ install --strip $$i ${DESTDIR}/sbin; \ ++ install $$i ${DESTDIR}/sbin; \ + install $$i.8 ${DESTDIR}/usr/share/man/man8; \ done - install init.ipx /etc/rc.d/init.d/ipx diff --git a/net-misc/ipx-utils/files/ipx-utils-1.1-proc.patch b/net-misc/ipx-utils/files/ipx-utils-1.1-proc.patch new file mode 100644 index 000000000000..4c9a5986cf00 --- /dev/null +++ b/net-misc/ipx-utils/files/ipx-utils-1.1-proc.patch @@ -0,0 +1,13 @@ +--- ipx-1.1/ipx_interface.c.orig 2004-10-16 13:14:40.677964152 -0400 ++++ ipx-1.1/ipx_interface.c 2004-10-16 13:15:18.464219768 -0400 +@@ -191,7 +191,9 @@ + exit(-1); + } + +- fp = fopen("/proc/net/ipx_interface", "r"); ++ fp = fopen("/proc/net/ipx/ipx_interface", "r"); ++ if (fp == NULL) ++ fp = fopen("/proc/net/ipx_interface", "r"); + if (fp == NULL) { + fprintf(stderr, + "%s: Unable to open \"/proc/net/ipx_interface.\"\n", |