forked from pool/ipmitool
Thomas Renninger
e7e8d0d141
* Add: 0001-fix-typo.patch 0002-added-microTCA-major-version.patch 0003-replaced-removed-defines-which-are-already-present-i.patch 0004-fix-typo.patch 0005-fix-typo.patch 0006-ID-461-OpenSSL-1.1-compatibility-error-storage-size-.patch 0007-ID-461-Make-compiler-happier-about-changes-related-t.patch 0008-ID-474-Compile-fix-on-nonlinux-systems.patch 0009-Add-bootstrap-support-for-Mac.patch 0010-Prevent-autoreconf-from-complaining-about-missing-NE.patch 0011-Add-git-hash-and-dirty-mark-to-ipmitool-version.patch 0012-Add-some-more-configure-build-editor-byproducts-to-..patch 0013-ID-478-ekanalyzer-Fixed-decoding-of-FRU-fields.patch 0014-ID-479-ekanalyzer-fix-processing-of-custom-mfg.-fiel.patch 0015-ID-477-fru-Fix-decoding-of-non-text-data-in-get_fru_.patch 0016-Make-git-revision-more-descriptive.patch 0017-ID-480-ipmitool-coredumps-in-EVP_CIPHER_CTX_init.patch OBS-URL: https://build.opensuse.org/package/show/systemsmanagement/ipmitool?expand=0&rev=40
31 lines
833 B
Diff
31 lines
833 B
Diff
From e45dc6234bf887fa8356684c13f2468c3041c542 Mon Sep 17 00:00:00 2001
|
|
From: Sergey Kleymenov <sergeykleymenov@gmail.com>
|
|
Date: Thu, 19 Mar 2015 08:31:53 +0300
|
|
Subject: [PATCH 09/17] Add bootstrap support for Mac
|
|
|
|
---
|
|
bootstrap | 10 +++++++++-
|
|
1 file changed, 9 insertions(+), 1 deletion(-)
|
|
|
|
Index: ipmitool-1.8.18/bootstrap
|
|
===================================================================
|
|
--- ipmitool-1.8.18.orig/bootstrap 2017-03-28 18:26:08.841325593 +0200
|
|
+++ ipmitool-1.8.18/bootstrap 2017-03-28 18:32:36.955472419 +0200
|
|
@@ -31,7 +31,15 @@
|
|
# EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
|
|
|
aclocal
|
|
-libtoolize --automake --copy
|
|
+
|
|
+case `uname` in
|
|
+ Darwin*)
|
|
+ glibtoolize --automake --copy
|
|
+ ;;
|
|
+ *)
|
|
+ libtoolize --automake --copy
|
|
+ ;;
|
|
+esac
|
|
|
|
autoheader
|
|
automake --foreign --add-missing --copy
|