diff options
author | Raymond Danks <ray.danks@se-eng.com> | 2012-07-09 13:29:17 -0600 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-07-09 22:18:37 +0200 |
commit | e1e6a91ce0738400fa1615179de88ebc0df29f66 (patch) | |
tree | 4a92edba7acdd96cf72709a54c6eec1f11c06260 | |
parent | 356a600907be10f5805f5fba5a40a30f97c9a0a7 (diff) | |
download | coreboot-e1e6a91ce0738400fa1615179de88ebc0df29f66.tar.xz |
mkelfimage: pkgdata directory created but never used
Remove superfluous pkg* definitions and installation of a target
directory directory that is never used.
Change-Id: I2addf3f316230cdd428def5889fd3beb7c40f422
Signed-off-by: Raymond Danks <ray.danks@se-eng.com>
Reviewed-on: http://review.coreboot.org/1195
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | util/mkelfImage/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/util/mkelfImage/Makefile b/util/mkelfImage/Makefile index cd265cf994..e930d6abad 100644 --- a/util/mkelfImage/Makefile +++ b/util/mkelfImage/Makefile @@ -10,10 +10,6 @@ DESTDIR = CWD:=$(shell pwd) OBJDIR:=objdir -pkgdatadir = $(datadir)/$(PACKAGE) -pkglibdir = $(libdir)/$(PACKAGE) -pkgincludedir = $(includedir)/$(PACKAGE) - CPPFLAGS=-DVERSION='"$(VERSION)"' -DRELEASE_DATE='"$(RELEASE_DATE)"' -I include HOST_CPPFLAGS=$(CPPFLAGS) I386_CPPFLAGS=$(CPPFLAGS) -I arch/i386/include @@ -69,7 +65,7 @@ maintainer-clean:: dist-clean install: $(TARGETS) - $(MKDIR) -p $(DESTDIR)/$(pkgdatadir)/elf32-i386/ $(DESTDIR)/$(sbindir) $(DESTDIR)/$(mandir)/man8 + $(MKDIR) -p $(DESTDIR)/$(sbindir) $(DESTDIR)/$(mandir)/man8 $(CP) -ar $(SBIN_TARGETS) $(DESTDIR)/$(sbindir)/ $(CP) -ar $(MAN8_TARGETS) $(DESTDIR)/$(mandir)/man8/ |