4c0d37
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
4c0d37
From: Peter Jones <pjones@redhat.com>
4c0d37
Date: Thu, 14 Nov 2019 10:08:08 -0500
4c0d37
Subject: [PATCH] Remove the accidental lib/Makefile.orig
4c0d37
4c0d37
Signed-off-by: Peter Jones <pjones@redhat.com>
4c0d37
---
4c0d37
 lib/Makefile.orig | 91 -------------------------------------------------------
4c0d37
 1 file changed, 91 deletions(-)
4c0d37
 delete mode 100644 lib/Makefile.orig
4c0d37
4c0d37
diff --git a/lib/Makefile.orig b/lib/Makefile.orig
4c0d37
deleted file mode 100644
4c0d37
index 65aa8ca5df2..00000000000
4c0d37
--- a/lib/Makefile.orig
4c0d37
+++ /dev/null
4c0d37
@@ -1,91 +0,0 @@
4c0d37
-#
4c0d37
-#  Copyright (C) 1999-2001 Hewlett-Packard Co.
4c0d37
-#	Contributed by David Mosberger <davidm@hpl.hp.com>
4c0d37
-#	Contributed by Stephane Eranian <eranian@hpl.hp.com>
4c0d37
-#
4c0d37
-#    All rights reserved.
4c0d37
-#
4c0d37
-#    Redistribution and use in source and binary forms, with or without
4c0d37
-#    modification, are permitted provided that the following conditions
4c0d37
-#    are met:
4c0d37
-#
4c0d37
-#    * Redistributions of source code must retain the above copyright
4c0d37
-#      notice, this list of conditions and the following disclaimer.
4c0d37
-#    * Redistributions in binary form must reproduce the above
4c0d37
-#      copyright notice, this list of conditions and the following
4c0d37
-#      disclaimer in the documentation and/or other materials
4c0d37
-#      provided with the distribution.
4c0d37
-#    * Neither the name of Hewlett-Packard Co. nor the names of its
4c0d37
-#      contributors may be used to endorse or promote products derived
4c0d37
-#      from this software without specific prior written permission.
4c0d37
-#
4c0d37
-#    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
4c0d37
-#    CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
4c0d37
-#    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
4c0d37
-#    MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
4c0d37
-#    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
4c0d37
-#    BE LIABLE FOR ANYDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
4c0d37
-#    OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
4c0d37
-#    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
4c0d37
-#    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
4c0d37
-#    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
4c0d37
-#    TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
4c0d37
-#    THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4c0d37
-#    SUCH DAMAGE.
4c0d37
-#
4c0d37
-
4c0d37
-SRCDIR = .
4c0d37
-
4c0d37
-VPATH = $(SRCDIR)
4c0d37
-
4c0d37
-include $(SRCDIR)/../Make.defaults
4c0d37
-
4c0d37
-TOPDIR = $(SRCDIR)/..
4c0d37
-
4c0d37
-CDIR = $(TOPDIR)/..
4c0d37
-FILES = boxdraw smbios console crc data debug dpath  \
4c0d37
-        error event guid hand hw init lock   \
4c0d37
-        misc print sread str cmdline \
4c0d37
-	runtime/rtlock runtime/efirtlib runtime/rtstr runtime/vm runtime/rtdata  \
4c0d37
-	$(ARCH)/initplat $(ARCH)/math 
4c0d37
-
4c0d37
-ifeq ($(ARCH),ia64)
4c0d37
-FILES += $(ARCH)/salpal $(ARCH)/palproc
4c0d37
-endif
4c0d37
-
4c0d37
-ifeq ($(ARCH),x86_64)
4c0d37
-FILES += $(ARCH)/callwrap $(ARCH)/efi_stub
4c0d37
-endif
4c0d37
-
4c0d37
-ifeq ($(ARCH),arm)
4c0d37
-FILES += $(ARCH)/lib1funcs $(ARCH)/div64
4c0d37
-endif
4c0d37
-
4c0d37
-OBJS  = $(FILES:%=%.o)
4c0d37
-
4c0d37
-SUBDIRS = ia32 x86_64 ia64 aarch64 arm runtime
4c0d37
-
4c0d37
-LIBDIRINSTALL = $(INSTALLROOT)$(LIBDIR)
4c0d37
-
4c0d37
-all: libsubdirs libefi.a
4c0d37
-
4c0d37
-.PHONY: libsubdirs
4c0d37
-libsubdirs:
4c0d37
-	for sdir in $(SUBDIRS); do mkdir -p $$sdir; done
4c0d37
-
4c0d37
-libefi.a: $(patsubst %,libefi.a(%),$(OBJS))
4c0d37
-
4c0d37
-clean:
4c0d37
-	rm -f libefi.a *~ $(OBJS) */*.o
4c0d37
-
4c0d37
-$(LIBDIRINSTALL):
4c0d37
-	mkdir -p $@
4c0d37
-
4c0d37
-$(LIBDIRINSTALL)/libefi.a: libefi.a | $(LIBDIRINSTALL)
4c0d37
-	$(INSTALL) -m 644 $< $(dir $@)
4c0d37
-
4c0d37
-install: $(LIBDIRINSTALL)/libefi.a
4c0d37
-
4c0d37
-include $(SRCDIR)/../Make.rules
4c0d37
-
4c0d37
-.PHONY: libsubdirs