Displaying 20 results from an estimated 1457 matches for "srcdir".
2014 Oct 22
2
[PATCH] tests: rename $SRCDIR to $srcdir
...guests/Makefile.am b/tests/guests/Makefile.am
index 62f5d14..88e0f57 100644
--- a/tests/guests/Makefile.am
+++ b/tests/guests/Makefile.am
@@ -75,7 +75,7 @@ fedora.img: guest-aux/make-fedora-img.pl \
guest-aux/fedora-journal.tar.xz \
guest-aux/fedora-name.db \
guest-aux/fedora-packages.db
- SRCDIR=$(srcdir) LAYOUT=partitions $(top_builddir)/run --test $<
+ srcdir=$(srcdir) LAYOUT=partitions $(top_builddir)/run --test $<
# Make a (dummy) Fedora image using md devices
fedora-md1.img fedora-md2.img: stamp-fedora-md.img
@@ -85,27 +85,27 @@ stamp-fedora-md.img: guest-aux/make-fedora-img...
2003 Mar 19
1
Patch for relocatable installs
...Andrew Tridgell 1992-1998
###########################################################################
-DESTDIR=
-
prefix=/usr/local
exec_prefix=${prefix}
mandir=${prefix}/man
@@ -704,29 +702,29 @@
install: installbin installman installscripts installcp installswat
installdirs:
- $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(DESTDIR)/$(BASEDIR)
- $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(DESTDIR)/$(SBINDIR)
- $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(DESTDIR)/$(BINDIR)
- $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(DESTDIR)/$(LIBDIR)
- $(SHELL) $(srcd...
2011 Oct 24
0
[patch/cygwin] don't require doc files
...======================
RCS 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)$...
2018 Apr 09
2
[PATCH] Fix out-of-tree builds of OCaml components
- Add $(srcdir), $(builddir) to Makefiles where required
- Post-process ocamldep output
- generate ocaml/.depends
---
builder/Makefile.am | 7 ++++---
common/mlgettext/Makefile.am | 2 +-
common/mlpcre/Makefile.am | 2 +-
common/mlprogress/Makefile.am | 2 +-
common/mlstdutils/Makefile.am | 2...
2018 Apr 11
1
[PATCH] Fix out-of-tree builds of OCaml components
- Add $(srcdir), $(builddir) to Makefiles where required
- Post-process ocamldep output
- generate ocaml/.depends
Gbp-Pq: Name 0012-Fix-out-of-tree-builds-of-OCaml-components.patch
---
builder/Makefile.am | 7 ++++---
common/mlgettext/Makefile.am | 2 +-
common/mlpcre/Makefile.am | 2 +-
commo...
2012 Jan 23
0
[PATCH] maint: use $var notation rather than ${var} when possible
I noticed some uses of ${srcdir} in shell scripts.
That is almost always better written as $srcdir.
The patch below converts most such variable references.
Here are the few remaining candidates:
$ git grep -i -E '\$\{[a-zA-Z_0-9]+\}'|grep -v Makefile.in.in
configure.ac: JAR_INSTALL_DIR=\${prefix}/share/java
config...
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...
2018 May 22
1
[PATCH] v2v: fix build rules for output_rhv_upload_*_source.ml files
Use the $(srcdir) variable where needed, to make sure it builds also
with srcdir != builddir.
Furthermore, make sure that the OCaml dependencies calculation depend on
the generated output_rhv_upload_*_source.ml files, otherwise there will
be incomplete OCaml rules for them in the generated .depend.
Fixes commit c...
2014 Nov 04
1
[PATCH] bash: fix build/clean when srcdir==builddir
Use CLEANFILES to remove the generated symlinks, and just ignore the
errors when copying the scripts in srcdir!=builddir situations.
Followup of commit 40ac54829d4e71b1bac76343872a2674a40c7ac0.
---
bash/Makefile.am | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/bash/Makefile.am b/bash/Makefile.am
index 780da64..ee9c10c 100644
--- a/bash/Makefile.am
+++ b/bash/Makefile.am
@@ -42...
2014 Sep 23
0
[PATCH 03/13] syntax-check: fix makefile_at_at_check
.....abee902 100644
--- a/common-rules.mk
+++ b/common-rules.mk
@@ -23,7 +23,7 @@
# Old RHEL 5 autoconf defines these, but RHEL 5 automake doesn't
# create variables for them. So define them here if they're not
# defined already.
-builddir ?= @builddir@
-abs_builddir ?= @abs_builddir@
-srcdir ?= @srcdir@
-abs_srcdir ?= @abs_srcdir@
+builddir ?= $(builddir)
+abs_builddir ?= $(abs_builddir)
+srcdir ?= $(srcdir)
+abs_srcdir ?= $(abs_srcdir)
diff --git a/customize/Makefile.am b/customize/Makefile.am
index 746375d..0f2571b 100644
--- a/customize/Makefile.am
+++ b/customiz...
2015 Oct 22
2
[PATCH 1/2] build: isolate common po-docs logic
.../Makefile.am
@@ -18,176 +18,6 @@
# Note that each Makefile.am in po-docs/$lang/Makefile.am should be
# identical. If you create a new $lang.po, create the $lang/
# subdirectory and copy the Makefile.am from an existing language.
+# All the actual logic should be in language.mk.
-include $(top_srcdir)/subdir-rules.mk
-
-LINGUA = $(shell basename -- `pwd`)
-
-CLEANFILES = *.1 *.3 *.5
-
-# Before 1.23.23, the old Perl tools were called *.pl.
-CLEANFILES += *.pl
-
-MANPAGES = \
- guestfish.1 \
- guestfs.3 \
- guestfs-erlang.3 \
- guestfs-examples.3 \
- guestfs-faq.1 \
- guestfs-golang.3 \
- guestf...
2014 May 02
5
[PATCH 1/3] build: fix srcdir!=builddir builds
...insertions(+), 8 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index 932881b..77aa611 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -99,7 +99,7 @@ supermin_SOURCES = $(SOURCES_C)
supermin_CFLAGS = \
-I$(shell $(OCAMLC) -where) \
$(EXT2FS_CFLAGS) $(COM_ERR_CFLAGS) \
- -I$(srcdir)/lib -I../lib
+ -I$(top_srcdir)/lib -I../lib
BOBJECTS = $(SOURCES_ML:.ml=.cmo)
XOBJECTS = $(SOURCES_ML:.ml=.cmx)
@@ -148,16 +148,16 @@ ext2init-bin.S: init
strip --strip-all $<
@file $< | grep -isq static || \
(echo "*** error: init is not staticly linked"; exit 1)
- ./b...
2011 Aug 14
6
[PATCH 1/6] out-of-tree build: fix documentation generation
...sertions(+), 65 deletions(-)
diff --git a/cat/Makefile.am b/cat/Makefile.am
index 6022cd6..91abfac 100644
--- a/cat/Makefile.am
+++ b/cat/Makefile.am
@@ -102,7 +102,7 @@ noinst_DATA = \
virt-cat.1 $(top_builddir)/html/virt-cat.1.html: stamp-virt-cat.pod
stamp-virt-cat.pod: virt-cat.pod
- $(top_srcdir)/podwrapper.sh \
+ $(top_builddir)/podwrapper.sh \
--man virt-cat.1 \
--html $(top_builddir)/html/virt-cat.1.html \
$<
@@ -111,7 +111,7 @@ stamp-virt-cat.pod: virt-cat.pod
virt-ls.1 $(top_builddir)/html/virt-ls.1.html: stamp-virt-ls.pod
stamp-virt-ls.pod: virt-ls.pod
- $(top_srcd...
1998 May 11
1
Problems Compiling 1.9.18p6 with SCO 3.2v4.2
Having a couple problems with Samba:
First Samba 1.9.18p6 doesn't compile under SCO Unix 3.2v4.2 using native
compiler:
Linking smbd
undefined first referenced
symbol in file
getpagesize slprintf.o
mprotect slprintf.o
memalign slprintf.o
ld fatal: Symbol
2019 Jan 26
6
[PATCH 0/2] allow alternative guest tools directories for distributions
First patch just fixes installing guest tools from directory that was broken.
Second patch revamps how virt-v2v chooses from which directory install guest
tools on Linux. Details in commit message.
Tomáš Golembiovský (2):
v2v: fix path to source when copying files from guest tools directory
v2v: allow alternative directories for distributions
v2v/windows_virtio.ml | 67
1998 Apr 02
1
Need Help Copiling Samba on Intergraph
I am trying to compile Samba on an Intergraph 6750 server running Clix.
These are my results....................
S_GIS/usr/gis/doug/samba/samba-1.9.18p3/source>make
Using CFLAGS = -O -DSMBLOGFILE="/usr/local/samba/var/log.smb"
-DNMBLOGFILE="/us
Using LIBS = -lbsd -lc_s
Compiling mem_man/mem_man.c
Compiling rpc_pipes/srvparse.c
Compiling rpc_pipes/smbparse.c
Compiling
2014 Oct 21
3
Re: [PATCH v5 1/7] tests: Introduce test harness for running tests.
...'d make
the backend choice generic; something like:
--backend NAME (direct, libvirt, uml, etc)
--backend-option NAME=VAL (e.g. binary=/path/to/qemu for qemu, etc;
can be specified multiple times)
> + (* If we are running from automake, then automake will pass $srcdir
> + * to us, and if it's not "." then we have to adjust our path to the
> + * top source directory accordingly.
> + *)
> + let srcdir = try Sys.getenv "srcdir" with Not_found -> "." in
> +
> + (* Are we running from the build directory...
2005 Jun 24
1
[PATCH] Fix itemize test for objdir != srcdir builds
Hi.
The choice of 'config.h' for testing does not consider the possiblity of
objdir != srcdir builds. The small patch below replaces 'config.h'
with 'configure.in' in keeping with the 'config' name choice.
Art Haas
Index: testsuite/itemize.test
===================================================================
RCS file: /cvsroot/rsync/testsuite/itemize.test,v
retr...
2008 Mar 30
1
[PATCH 1/2] Add SECRET_TEST_CODE to AM_CONDITIONAL in configure.ac
Otherwise, automake will fail to process vivified/code/Makefile.am
---
configure.ac | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/configure.ac b/configure.ac
index a3e186b..0e28374 100644
--- a/configure.ac
+++ b/configure.ac
@@ -300,6 +300,7 @@ else
AC_MSG_NOTICE([Vivified was not enabled.])
fi
AM_CONDITIONAL(HAVE_VIVI, [test "x$HAVE_VIVI" = xyes])
2019 Feb 08
0
[PATCH v2 2/3] v2v: allow alternative directories for distributions
...error (f_"root directory ‘/’ is missing from the virtio-win directory or ISO.\n\nThis should not happen and may indicate that virtio-win or virt-v2v is broken in some way. Please report this as a bug with a full debug log."))
-(* Copy all files from virtio_win directory/ISO located in [srcdir]
- * subdirectory and all its subdirectories to the [destdir]. The directory
- * hierarchy is not preserved, meaning all files will be directly in [destdir].
- * The file list is filtered based on [filter] function.
+(* Find first existing direcotry from [scrdirs] list located in virtio_win
+ * dir...