search for: installroot

Displaying 20 results from an estimated 142 matches for "installroot".

2015 Mar 11
1
Patch: Kbuild.install: *** No rule to make target `headers_install'.
...`headers_install'. Stop. make[1]: *** [header] Error 2 make: *** [install] Error 2 Issue: KLIBCKERNELSRC=`pwd`/linux/usr points to Makefile without headers_install rule. Kbuild.install uses wrong Makefile. Line 81: $(Q)$(MAKE) -C $(KLIBCKERNELSRC) ARCH=$(KLIBCARCH) INSTALL_HDR_PATH=$(INSTALLROOT)$(INSTALLDIR)/$(KCROSS) headers_install headers_install is not in linux/usr. It is in linux base directory. Patch: --- Kbuild.install 2015-03-11 07:29:19.292071162 -0700 +++ Kbuild.install.fix 2015-03-11 07:36:25.973404816 -0700 @@ -95,7 +95,7 @@ $(Q)mkdir -p $(INSTALLROOT)$(INSTALL...
2012 Feb 06
1
[PATCH] Fix kernel headers install
...n at gmail.com> --- scripts/Kbuild.install | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install index 370b54e..fd4a2ed 100644 --- a/scripts/Kbuild.install +++ b/scripts/Kbuild.install @@ -95,7 +95,7 @@ header: $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)lib $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)bin - $(Q)$(MAKE) -C $(KLIBCKERNELSRC) ARCH=$(KLIBCARCH) INSTALL_HDR_PATH=$(INSTALLROOT)$(INSTALLDIR)/$(KCROSS) headers_install + $(Q)$(MAKE) -C $(KLIBCKERNELOB...
2013 Aug 22
2
Build problems: klibc with Linux 3.10.7
...at actually seems to be by design. I always set >> SHLIBDIR on the make command line, so it overrides that. >> >> bye, >> //mirabilos > Yes, indeed I found out that instead of doing 'make install > prefix=/tmp/klibc-install', I shall do 'make install > INSTALLROOT=/tmp/klibc-install prefix=/' > In fact no, it doesn't work. If I set prefix to / and INSTALLROOT to /opt/klibc, klcc is not able to find the include files If I set prefix to /opt/klibc and SHLIBDIR to /opt/klibc/lib, it is the target that tries to load klibc.so from /tmp/klibc-install...
2013 Aug 21
2
Build problems: klibc with Linux 3.10.7
leroy christophe dixit: > Also you can see that it does try to create /lib instead of > /tmp/klibc-install/lib hence my second patch. That actually seems to be by design. I always set SHLIBDIR on the make command line, so it overrides that. bye, //mirabilos -- > Wish I had pine to hand :-( I'll give lynx a try, thanks. Michael Schmitz on
2011 Dec 14
1
Initial errors when running winecfg for first time
...me to create default prefix, and although it succeeded, I got some errors. Complete output: Code: wine: created the configuration directory '/home/jc_lara/.wine' fixme:storage:create_storagefile Storage share mode not implemented. err:mscoree:LoadLibraryShim error reading registry key for installroot err:mscoree:LoadLibraryShim error reading registry key for installroot err:mscoree:LoadLibraryShim error reading registry key for installroot err:mscoree:LoadLibraryShim error reading registry key for installroot err:mscoree:LoadLibraryShim error reading registry key for installroot err:mscoree:Loa...
2005 Sep 10
3
yum --installroot and GPG key
Hi. When I try to use --installroot, I get the following: --- [root at machine ~]# yum --installroot=/data/xchg-2.0/ install apache2 You have enabled checking of packages via GPG keys. This is a good thing. However, you do not have any GPG public keys installed. You need to download the keys for packages you wish to install and ins...
2002 Jul 02
1
[Bug 329] New: gmake install prefix=... does not work with the privsep-path
...tatus: NEW Severity: normal Priority: P2 Component: Build system AssignedTo: openssh-unix-dev at mindrot.org ReportedBy: wolfgang.dautermann at fh-joanneum.at To build a package I do ./configure --prefix=/somewhere ... gmake gmake install prefix=/tmp/installroot And then usually a "cd /tmp/installroot ; find ." gives you the files which openssh would install and which should be included in the Package. That does not work with 3.4p1 because (a) the configure-option "--prefix" does not influence the "--with-privsep-path" O...
2013 Jun 29
2
Syslinux 6.00 released
Hi, seems like there is a problem in gnu-efi Makefiles: When you are not on Debian, this will be installed (from $source/inc/Makefile, called from $source/Makefile): install: mkdir -p $(INSTALLROOT)$(PREFIX)/include/efi mkdir -p $(INSTALLROOT)$(PREFIX)/include/efi/protocol mkdir -p $(INSTALLROOT)$(PREFIX)/include/efi/$(ARCH) $(INSTALL) -m 644 *.h $(INSTALLROOT)$(PREFIX)/include/efi $(INSTALL) -m 644 protocol/*.h $(INSTALLROOT)$(PREFIX)/include/efi/protocol $(INSTALL) -m 644 $(A...
2009 Jul 17
0
[PATCH] Use headers_install to install headers
...org> --- scripts/Kbuild.install | 11 +---------- 1 files changed, 1 insertions(+), 10 deletions(-) diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install index 44c8f76..de918f0 100644 --- a/scripts/Kbuild.install +++ b/scripts/Kbuild.install @@ -95,16 +95,7 @@ header: $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)lib $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)bin - $(Q)set -e ; for d in linux asm asm-$(KLIBCARCH) asm-generic $(ASMKLIBCARCH); do \ - for r in $(KLIBCKERNELSRC)/include $(KLIBCKERNELOBJ)/include \ -...
2013 Aug 20
0
Build problems: klibc with Linux 3.10.7
...ve the one in which > this file is found)" > But as noted above, this symlink really wants to be in the root of the source > archive (klibc-2.0.2/linux), not in usr/ (klibc-2.0.2/usr/linux) (the dir > above the one where README.klibc is found). > > In Kbuild.install, 'INSTALLROOT' is what many (most?) packages call DESTDIR: > an alternate install dir to prepare pkgs. And KLIBCKERNELSRC is the path to > the kernel sources. In my case, this is /build/sources/linux/linux-3.10.7 (in > the jail). > > There's an oddity in how include dirs are specified. Fir...
2005 May 20
0
patch-bugfix: actually install shared lib to INSTALLROOT
Halo, I think the following patch is correct. I just downloaded 1.0.9 and has the same problem namely it doesn't respect INSTALLROOT when installs the shared library -------------- next part -------------- diff -ur orig/klibc-1.0.8/klcc.in klibc-1.0.8/klcc.in --- orig/klibc-1.0.8/klcc.in 2005-03-07 23:44:49.000000000 +0200 diff -ur orig/klibc-1.0.8/klibc/Makefile klibc-1.0.8/klibc/Makefile --- orig/klibc-1.0.8/klibc/Makefile 2...
2017 Jan 05
0
[PATCH] Fix make install target
...kernel.org> --- scripts/Kbuild.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install index 8af569777cc3..a719e5571edf 100644 --- a/scripts/Kbuild.install +++ b/scripts/Kbuild.install @@ -95,7 +95,7 @@ header: $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)lib $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)bin - $(Q)$(MAKE) -C $(KLIBCKERNELSRC) ARCH=$(KLIBCARCH) INSTALL_HDR_PATH=$(INSTALLROOT)$(INSTALLDIR)/$(KCROSS) headers_install + $(Q)$(MAKE) -C $(KLIBCKERNELSR...
2017 Oct 07
0
[PATCH] Fix install target
--- scripts/Kbuild.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install index 8af5697..5f42834 100644 --- a/scripts/Kbuild.install +++ b/scripts/Kbuild.install @@ -95,7 +95,7 @@ header: $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)lib $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)bin - $(Q)$(MAKE) -C $(KLIBCKERNELSRC) ARCH=$(KLIBCARCH) INSTALL_HDR_PATH=$(INSTALLROOT)$(INSTALLDIR)/$(KCROSS) headers_install + $(Q)$(MAKE) -C $(KLIBCKERNELSR...
2019 Jan 18
0
[klibc:master] Kbuild.install: Copy UAPI headers instead of reinstalling them
...at decadent.org.uk> --- scripts/Kbuild.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install index bafd423..32aec84 100644 --- a/scripts/Kbuild.install +++ b/scripts/Kbuild.install @@ -95,7 +95,7 @@ header: $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)lib $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)bin - $(Q)$(MAKE) -C $(KLIBCKERNELSRC) ARCH=$(KLIBCARCH) INSTALL_HDR_PATH=$(INSTALLROOT)$(INSTALLDIR)/$(KCROSS) headers_install + $(Q)cp -rfL $(KLIBCKERNELSRC)/...
2005 May 12
2
[Bug 1038] buildpkg.sh postinstall script does not install RC links using installroot and non-symlinks.
http://bugzilla.mindrot.org/show_bug.cgi?id=1038 Summary: buildpkg.sh postinstall script does not install RC links using installroot and non-symlinks. Product: Portable OpenSSH Version: 4.0p1 Platform: UltraSparc OS/Version: Solaris Status: NEW Severity: normal Priority: P2 Component: Build system AssignedTo: bitbucket at mindrot.org...
2005 May 24
2
klibc-1.0.12 released
Hopefully I should be up to date with all patches; haven't integrated the module-init-tools, and some of Erik's patches didn't make it for different reasons, which hopefully can be resolved soon. If you have sent another patch which I haven't applied, please do let me know. -hpa
2011 Jul 20
1
[PATCH] fix parallel make install error
...at gentoo.org> --- scripts/Kbuild.install | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install index de918f0..370b54e 100644 --- a/scripts/Kbuild.install +++ b/scripts/Kbuild.install @@ -95,7 +95,7 @@ header: $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)lib $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)bin - $(Q)make -C $(KLIBCKERNELSRC) ARCH=$(KLIBCARCH) INSTALL_HDR_PATH=$(INSTALLROOT)$(INSTALLDIR)/$(KCROSS) headers_install + $(Q)$(MAKE) -C $(KLIBCKERNELSRC)...
2013 Dec 11
0
Offline YUM repository setup working but yum with --installroot fails
I use a local, off-line repository for CentOS plus updates for my development network (my setup for many years). By design, the repository has no physical connection to the Internet. Everything seems to be setup correctly and works fine for installs/updates. However I am trying to use the --installroot option for YUM and it is complaining about not finding a mirror. I removed the lines about mirror from my CentOS repo files so I am confused. My CentOS-Base.repo file contains: [base] name=CentOS-$releaseserver - Base baseurl=http://myhost.org/yum/centos/$releasever/os/$basearch/ gpgcheck=1 gpgk...
2013 Jul 01
0
Syslinux 6.00 released
On Sat, 29 Jun, at 04:40:00PM, Igor Sverkos wrote: > Hi, > > seems like there is a problem in gnu-efi Makefiles: > > When you are not on Debian, this will be installed (from > $source/inc/Makefile, called from $source/Makefile): > > install: > mkdir -p $(INSTALLROOT)$(PREFIX)/include/efi > mkdir -p $(INSTALLROOT)$(PREFIX)/include/efi/protocol > mkdir -p $(INSTALLROOT)$(PREFIX)/include/efi/$(ARCH) > $(INSTALL) -m 644 *.h $(INSTALLROOT)$(PREFIX)/include/efi > $(INSTALL) -m 644 protocol/*.h $(INSTALLROOT)$(PREFIX)/include/efi/protocol >...
2005 Sep 12
2
Failing "yum --installroot=/mnt groupinstall base"
Hello all, trying to do the below command. yum --installroot=/mnt groupinstall base i receive this error message. "You have enabled checking of packages via GPG keys. This is a good thing. However, you do not have any GPG public keys installed. You need to download the keys for packages you wish to install and install them. You can do that by running...