[Ocfs2-tools-devel] [PATCH 2/2] build: add fc9 vendor definitions
Tao Ma
tao.ma at oracle.com
Wed Aug 13 07:25:23 PDT 2008
Mostly copied from vendor/fc8
Signed-off-by: Tao Ma <tao.ma at oracle.com>
---
vendor/Makefile | 2 +-
vendor/fc9/Makefile | 10 +++++++
vendor/fc9/Vendor.make | 10 +++++++
vendor/fc9/rpmarch.guess | 68 ++++++++++++++++++++++++++++++++++++++++++++++
vendor/fc9/vendor.guess | 13 +++++++++
5 files changed, 102 insertions(+), 1 deletions(-)
create mode 100644 vendor/fc9/Makefile
create mode 100644 vendor/fc9/Vendor.make
create mode 100755 vendor/fc9/rpmarch.guess
create mode 100755 vendor/fc9/vendor.guess
diff --git a/vendor/Makefile b/vendor/Makefile
index 97724be..ba58625 100644
--- a/vendor/Makefile
+++ b/vendor/Makefile
@@ -2,6 +2,6 @@ TOPDIR = ..
include $(TOPDIR)/Preamble.make
-SUBDIRS = common rhel5 sles10 rhel4 sles9 fc7 fc8
+SUBDIRS = common rhel5 sles10 rhel4 sles9 fc7 fc8 fc9
include $(TOPDIR)/Postamble.make
diff --git a/vendor/fc9/Makefile b/vendor/fc9/Makefile
new file mode 100644
index 0000000..7afe47c
--- /dev/null
+++ b/vendor/fc9/Makefile
@@ -0,0 +1,10 @@
+TOPDIR = ../..
+
+include $(TOPDIR)/Preamble.make
+
+DIST_FILES = \
+ rpmarch.guess \
+ Vendor.make \
+ vendor.guess
+
+include $(TOPDIR)/Postamble.make
diff --git a/vendor/fc9/Vendor.make b/vendor/fc9/Vendor.make
new file mode 100644
index 0000000..db9fde1
--- /dev/null
+++ b/vendor/fc9/Vendor.make
@@ -0,0 +1,10 @@
+#
+# Fedora 9
+#
+
+TOOLSARCH = $(shell $(TOPDIR)/vendor/fc9/rpmarch.guess tools $(TOPDIR))
+VENDOR_EXTENSION = fc9
+
+include $(TOPDIR)/vendor/common/Vendor.make
+
+packages: rpm
diff --git a/vendor/fc9/rpmarch.guess b/vendor/fc9/rpmarch.guess
new file mode 100755
index 0000000..77a1142
--- /dev/null
+++ b/vendor/fc9/rpmarch.guess
@@ -0,0 +1,68 @@
+#! /bin/sh
+
+mode="$1"
+srcdir="$2"
+
+host_cpu=
+
+
+QUERYFILE=/etc/fedora-release
+
+if test -n "$QUERYFILE"; then
+ host_cpu="`rpm -qf $QUERYFILE --queryformat \"%{ARCH}\"`"
+fi
+
+if test -z "$host_cpu" -o "$host_cpu" = "noarch" ; then
+ host_alias=`$srcdir/config.guess`
+ host=`$srcdir/config.sub $host_alias`
+ host_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+fi
+
+case "$host_cpu" in
+ x86_64|ia64|s390x)
+ TOOLSARCH="$host_cpu"
+ ;;
+ i386|i486|i586|i686|i786|k6|k7)
+ TOOLSARCH="i386"
+ ;;
+ ppc|ppc64|ppciseries|ppcpseries|ppc64iseries|ppc64pseries|powerpc|powerpc64)
+ TOOLSARCH="ppc"
+ ;;
+ *)
+ echo "rpmarch.guess: Warning: unknown RPM CPU architecture: $host_cpu" >&2
+ TOOLSARCH=""
+ ;;
+esac
+
+# Only a few of these need to be overwritten from RPM's default
+case "$host_cpu" in
+ i386|i586)
+ MODULEARCH="i686"
+ ;;
+ ppc|ppc64|ppciseries|ppcpseries|ppc64iseries|ppc64pseries|powerpc|powerpc64)
+ MODULEARCH="ppc64"
+ ;;
+ *)
+ MODULEARCH=""
+ ;;
+esac
+
+case "$mode" in
+ module)
+ if [ -n "$MODULEARCH" ] ; then
+ echo "--target $MODULEARCH"
+ fi
+ ;;
+ tools)
+ if [ -n "$TOOLSARCH" ] ; then
+ echo "--target $TOOLSARCH"
+ fi
+ ;;
+ *)
+ echo "rpmarch.guess: Invalid mode: $mode" >&2
+ echo "error"
+ exit 1
+ ;;
+esac
+
+exit 0
diff --git a/vendor/fc9/vendor.guess b/vendor/fc9/vendor.guess
new file mode 100755
index 0000000..13d58e0
--- /dev/null
+++ b/vendor/fc9/vendor.guess
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+if [ ! -f /etc/redhat-release ]
+then
+ exit 1
+fi
+
+case "`rpm -qf /etc/fedora-release --qf '%{VERSION}' 2>/dev/null`" in
+ 9*) ;;
+ *) exit 1;;
+esac
+
+exit 0
--
1.5.4.GIT
More information about the Ocfs2-tools-devel
mailing list