1From 1edb0e27e44196d1ebe449aba0b9be22d376bcb6 Mon Sep 17 00:00:00 2001
2From: Alexander Amelkin <alexander@amelkin.msk.ru>
3Date: Tue, 22 Nov 2022 13:55:33 +0300
4Subject: [PATCH] Fix enterprise-numbers URL
5
6IANA has changed their URL scheme, and the content at the old URL for
7enterprise-numbers switched from text/plain to text/html.
8
9Fix Makefile.am to use the new URL
10
11Resolves ipmitool/ipmitool#377
12
13Signed-off-by: Alexander Amelkin <alexander@amelkin.msk.ru>
14
15[vfazio: backport from upstream 1edb0e27e44196d1ebe449aba0b9be22d376bcb6]
16Signed-off-by: Vincent Fazio <vfazio@gmail.com>
17---
18 Makefile.am | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21diff --git a/Makefile.am b/Makefile.am
22index ce3267f..3182a52 100644
23--- a/Makefile.am
24+++ b/Makefile.am
25@@ -41,7 +41,7 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure configure-stamp \
26 	$(distdir).tar.gz $(distdir).tar.bz2
27
28 SUBDIRS = lib src include doc contrib control
29-IANA_PEN = http://www.iana.org/assignments/enterprise-numbers
30+IANA_PEN = http://www.iana.org/assignments/enterprise-numbers.txt
31
32 dist-hook:
33 	cp control/ipmitool.spec $(distdir)
34--
352.25.1
36
37