Displaying 20 results from an estimated 735 matches for "destdir".
2002 Apr 01
0
[Bug 198] New: Error getting file with sftp on old F-Secure servers
...1.197 2002/02/26 19:24:22 mouring Exp $
prefix=/usr/local
exec_prefix=${prefix}
bindir=${exec_prefix}/bin
sbindir=${exec_prefix}/sbin
libexecdir=${exec_prefix}/libexec
datadir=${prefix}/share
mandir=${prefix}/man
mansubdir=man
sysconfdir=/usr/local/etc
piddir=/usr/local/etc
srcdir=.
top_srcdir=.
DESTDIR=
SSH_PROGRAM=${exec_prefix}/bin/ssh
ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
SFTP_SERVER=$(libexecdir)/sftp-server
PATHS= -DSSHDIR=\"$(sysconfdir)\" \
-D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \
-D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \
-D_PATH_SFTP_SERVE...
2001 Oct 16
6
program-prefix does not work
...-- bryan
diff -cr openssh-2.9.9p2.orig/Makefile.in openssh-2.9.9p2/Makefile.in
*** openssh-2.9.9p2.orig/Makefile.in Mon Sep 17 22:06:22 2001
--- openssh-2.9.9p2/Makefile.in Tue Oct 16 15:29:27 2001
***************
*** 12,29 ****
piddir=@piddir@
srcdir=@srcdir@
top_srcdir=@top_srcdir@
DESTDIR=
VPATH=@srcdir@
! SSH_PROGRAM=@bindir@/ssh
! ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
! SFTP_SERVER=$(libexecdir)/sftp-server
PATHS= -DETCDIR=\"$(sysconfdir)\" \
-D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \
-D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"...
2002 Mar 26
0
[Bug 187] New: ssh-keygen not converting from and to SECSH standard correctly
...1.197 2002/02/26 19:24:22 mouring Exp $
prefix=/usr/local
exec_prefix=${prefix}
bindir=${exec_prefix}/bin
sbindir=${exec_prefix}/sbin
libexecdir=${exec_prefix}/libexec
datadir=${prefix}/share
mandir=${prefix}/man
mansubdir=man
sysconfdir=/usr/local/etc
piddir=/usr/local/etc
srcdir=.
top_srcdir=.
DESTDIR=
SSH_PROGRAM=${exec_prefix}/bin/ssh
ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
SFTP_SERVER=$(libexecdir)/sftp-server
PATHS= -DSSHDIR=\"$(sysconfdir)\" \
-D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \
-D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \
-D_PATH_SFTP_SERVE...
2010 Mar 09
2
[PATCH/cygwin]: Fix Makefiles
...=================================================
RCS file: /cvs/openssh/Makefile.in,v
retrieving revision 1.306
diff -u -p -r1.306 Makefile.in
--- Makefile.in 24 Feb 2010 07:18:51 -0000 1.306
+++ Makefile.in 9 Mar 2010 13:33:06 -0000
@@ -255,20 +255,20 @@ install-files:
$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
$(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
(umask 022 ; $(srcdir)/mkinstalldirs $(DESTDIR)$(PRIVSEP_PATH))
- $(INSTALL) -m 0755 $(STRIP_OPT) ssh $(DESTDIR)$(bindir)/ssh
- $(INSTALL) -m 0755 $(STRIP_OPT) scp $(DESTDIR)$(bindir)/scp
- $(INSTALL) -m 0755 $(STRIP_OPT) s...
2003 Mar 19
1
Patch for relocatable installs
I remember seeing a patch here a long while back that I thought was going
to be committed for making the install relocatable (i.e. allowing for a
DESTDIR to be specified during a "make install"). I can't find it, and I'm
not sure I am remembering correctly, anyway, so here is a shot at it.
Tested both the install and uninstall, run as "make install
DESTDIR=/new/top/level". I find the ability to do this invaluable for
crea...
2011 Oct 24
0
[patch/cygwin] don't require doc files
...CS file: /cvs/openssh/contrib/cygwin/Makefile,v
retrieving revision 1.7
diff -u -p -r1.7 Makefile
--- contrib/cygwin/Makefile 9 Apr 2010 03:35:24 -0000 1.7
+++ contrib/cygwin/Makefile 24 Oct 2011 10:39:25 -0000
@@ -36,21 +36,20 @@ install-inetd-config:
install-sshdoc:
$(srcdir)/mkinstalldirs $(DESTDIR)$(sshdocdir)
- $(INSTALL) -m 644 $(srcdir)/CREDITS $(DESTDIR)$(sshdocdir)/CREDITS
- $(INSTALL) -m 644 $(srcdir)/ChangeLog $(DESTDIR)$(sshdocdir)/ChangeLog
- $(INSTALL) -m 644 $(srcdir)/LICENCE $(DESTDIR)$(sshdocdir)/LICENCE
- $(INSTALL) -m 644 $(srcdir)/OVERVIEW $(DESTDIR)$(sshdocdir)/OVERVIEW
- $(...
2013 Jul 17
13
[PATCH 0/3] xen: various changes to what we install in /boot
Jan suggested a couple of cleanups based upon my "xen: allow
architecture to choose whether to compress installed xen binary" patch.
So this series now consists of:
xen: allow architecture to choose how/whether to compress installed xen binary
xen: x86: drop the ".gz" suffix when installing
xen: Use $(T) and $(D) aliases in install target
This is based
2001 Feb 07
2
Patch for unformatted manpages
...(LIBS)
-$(MANPAGES) $(CONFIGFILES)::
+$(CONFIGFILES)::
+ $(FIXPATHSCMD) $(srcdir)/$@
+
+$(MANPAGES)::
$(FIXPATHSCMD) $(srcdir)/$@
+ $(MDOC2MANCMD) < $@.out > $@.out2 && mv $@.out2 $@.out
clean:
(cd openbsd-compat; $(MAKE) clean)
@@ -152,8 +155,8 @@
$(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
$(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
- $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
- $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
+ $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man1
+ $(srcdir)/mkinstalldirs...
2001 Jun 22
0
PATCH: Makefile.in more upgrade friendly.
...09:53:07 2001
+++ Makefile.in Fri Jun 22 09:56:17 2001
@@ -164,15 +164,17 @@
distprep: catman-do
autoreconf
-install: $(TARGETS) install-files host-key
+install: $(TARGETS) install-dirs install-prog install-man install-conf host-key
-install-files:
+install-dirs:
$(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
$(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
$(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
+
+install-prog:
$(INSTA...
2013 Apr 25
1
openssh cross compilation issue
...install
I already tried with make install-nosysconf, but I had the same problem
how can I fix this?
to be more precise,
after the ./configure ...
in order to have the compilation to proceeds without problems I have to
edit Makefile and modify in this way:
1) near check-config:
from:
-$(DESTDIR)$(sbindir)/sshd -t -f $(DESTDIR)$(sysconfdir)/sshd_config
to:
/usr/sbin/sshd -t -f $(DESTDIR)$(sysconfdir)/sshd_config
2) near host-key: ssh-keygen$(EXEEXT)
from:
./ssh-keygen -t rsa1 -f $(sysconfdir)/ssh_host_key -N "" ; \
to:
/usr/bin/ssh-keygen -t rsa1 -f $(sysconfdir)/...
2013 Sep 18
5
[PATCH] qemu-traditional: do not strip binaries during make install
...azon.com>
---
Makefile | 2 +-
Makefile.target | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 37c7066..594f0ef 100644
--- a/Makefile
+++ b/Makefile
@@ -243,7 +243,7 @@ endif
install: all $(if $(BUILD_DOCS),install-doc)
mkdir -p "$(DESTDIR)$(bindir)"
ifneq ($(TOOLS),)
- $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
+ $(INSTALL) -m 755 $(TOOLS) "$(DESTDIR)$(bindir)"
endif
ifneq ($(BLOBS),)
mkdir -p "$(DESTDIR)$(datadir)"
diff --git a/Makefile.target b/Makefile.target
index 19bb0fd..1cf7f34...
2013 Jul 12
14
[PATCH] xen: arm: make zImage the default target which we install
From: Ian Campbell <ian.campbell@citrix.com>
The zImage compatible binary is the useful one on real hardware. The relocated
ELF thing is only really useful when booting directly on Fast Models. The
customary suffix for that case is .axf so provide that as a target.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Cc: Wookey <wookey@linaro.org>
---
xen/arch/arm/Makefile |
2005 Feb 13
0
[PATCH] make install support
...ndency mess.
Index: MCONFIG
===================================================================
--- MCONFIG (revision 1009)
+++ MCONFIG (working copy)
@@ -45,6 +45,19 @@
CRTSHARED = $(KLIBOBJ)/interp.o
LIBSHARED = $(KLIBOBJ)/libc.so
+INSTALL = /usr/bin/install
+
+# offset during make install
+DESTDIR =
+
+# binaries will be installed here
+# this is not the system /bin dir because the klibc binaries
+# have not support for all cmdline options of their glibc counterparts
+# it must also be accessible before /usr is mounted because udev
+# PROGRAM= helper apps may rely on it.
+# they are also po...
2005 Oct 14
3
zip package
...ot understand how to install the package lpsolve_1.1.9.zip
I have read the FAQ and the help pages carefully, but it still not
clear for me.
I have tried the following (and obtained the respective error
messages):
>install.packages("c:/ProgramFiles/R/rw2011/library/lpSolve_1.1.9",destdir="
c:/ProgramFiles/R/rw2011/library/lpSolve")
Mensagem de aviso:
no package 'c:/Program
Files/R/rw2011/library/lpSolve_1.1.9' at the repositories in:
download.packages(pkgs, destdir = tmpd, available = available,
>install.packages("lpSolve_1.1.9",destdir="...
2002 Jun 21
1
samba-2.2.5 -- a minor "make install" problem and 2 suggestions
Hi,
I would like to ask you to consider the attached patch for inclusion into
the next samba release. The patch addresses the following three points:
1. 'make install' with VPATH fails at one point
( $(srcdir)/script/findsmb vs. script/findsmb )
2. support for 'make DESTDIR=<somewhere> install' (e.g. to build a binary
package)
3. support for 'configure --without-swat' to disable building and installing
swat (in the way our systems are set up we most definitely don't need swat).
regards
Peter Breitenlohner <peb@mppmu.mpg.de>
--------------...
2006 Feb 25
2
R-Project build system: DESTDIR support
Hello,
I am writing you about the GNU R-Project,
as part of by effort to help GNU projects provide a better, more
consistent build system.
Currently, your project does not support the DESTDIR variable in
generated Makefiles (marked as optional in the GNU coding policies, make and
automake manual).
In my opinion, DESTDIR support can be very helpful for the user, the
distribution-specific packagers and third-party programs, because it
offers a consistent and portable way to perform stage...
2006 Dec 09
3
[LLVMdev] llvm build not respecting DESTDIR?
...l-1/info
> PROJ_mandir := /proj/llvm/install-1/man
>
> The values are from my environment. You can either override each of
> these individually on the command line or replace their values in
> Makefile.config.
Great, that worked, thanks. For a future release though, think that
DESTDIR could be supported? It shouldn't be that difficult, all that
would need to be changed is in Makefile.config.in:
DESTDIR :=
PROJ_prefix := $(DESTDIR)@prefix@
PROJ_bindir := $(DESTDIR)@prefix@/bin
PROJ_libdir := $(DESTDIR)@prefix@/lib
PROJ_datadir := $(DESTDIR)@prefix@/sh...
2003 Nov 15
2
[patch] 3.7.1p2: slogin symlink fixes
...0000000 +0000
+++ openssh-3.6.1p2/Makefile.in 2003-05-06 20:55:54.000000000 +0000
@@ -48,6 +48,7 @@ LIBWRAP=@LIBWRAP@
AR=@AR@
RANLIB=@RANLIB@
INSTALL=@INSTALL@
+LN_S=@LN_S@
PERL=@PERL@
SED=@SED@
ENT=@ENT@
@@ -263,9 +264,9 @@ install-files: scard-install
$(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
$(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
-rm -f $(DESTDIR)$(bindir)/slogin
- ln -s ./ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
+ cd $(DESTDIR)$(bindir) && $(LN_S) ssh$(EXEEXT) slogin$(EXEEXT)
-rm -f $(DESTD...
2000 Aug 15
0
[PATCH]: Port to Mac OS X/Darwin, misc
...EFAULT=\"$(ASKPASS_PROGRAM)\"
-CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
+CFLAGS=@CFLAGS@
+CPPFLAGS=@CPPFLAGS@ $(PATHS) @DEFS@ -I. -I$(srcdir)
LIBS=@LIBS@
AR=@AR@
RANLIB=@RANLIB@
@@ -118,11 +119,11 @@
install: manpages $(TARGETS) install-files host-key
install-files:
- ./mkinstalldirs $(DESTDIR)$(bindir)
- ./mkinstalldirs $(DESTDIR)$(sbindir)
- ./mkinstalldirs $(DESTDIR)$(mandir)
- ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
- ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
+ $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
+ $(srcdir)/mkinstalldirs...
2014 Jan 16
1
[PATCH] hivex: ruby: Support 'make INSTALLDIRS=vendor install' for Ruby
...indings are installed.
+INSTALLDIRS = site
+
+RUBY_LIBDIR := $(shell $(RUBY) -rrbconfig -e "puts RbConfig::CONFIG['$(INSTALLDIRS)libdir']")
+RUBY_ARCHDIR := $(shell $(RUBY) -rrbconfig -e "puts RbConfig::CONFIG['$(INSTALLDIRS)archdir']")
install:
- $(MKDIR_P) $(DESTDIR)$(RUBY_SITELIB)
- $(MKDIR_P) $(DESTDIR)$(RUBY_SITEARCH)
- $(INSTALL) -p -m 0644 ${srcdir}/lib/hivex.rb $(DESTDIR)$(RUBY_SITELIB)
- $(INSTALL) -p -m 0755 ${builddir}/ext/hivex/_hivex.so $(DESTDIR)$(RUBY_SITEARCH)
+ $(MKDIR_P) $(DESTDIR)$(RUBY_LIBDIR)
+ $(MKDIR_P) $(DESTDIR)$(RUBY_ARCHDIR)
+ $(INSTAL...