Displaying 20 results from an estimated 7000 matches similar to: "Makefile.in (install-strip) problem & 2.5.2 build error"
2002 Mar 15
1
rsync-2.5.4 -- 'make install-strip' failure
Hi,
I have already sent this once, but since the problem persists here it is again.
Please consider the attached patch for inclusion in the rsync distribution.
The patch fixes the problem that 'make install-strip' tries to strip the
manpages and thus fails.
An other part of the patch adds DESTDIR (for package building). This is
nowadays part of all automake generated Makefile's,
2004 May 01
1
install-strip issue
>From 2.6.2's Makefile:
install: all
	...
	${INSTALLCMD} ${STRIP} -m 755 rsync$(EXEEXT) ${DESTDIR}${bindir}
	...
install-strip:
	$(MAKE) STRIP='-s' install
This doesn't work (at least) on OpenBSD, because install(1) there
will use the value of the environment variable STRIP as the command
to run for stripping the executable.
Renaming the variable will take care of this.
---
2002 Mar 13
2
[PATCH] fix install-strip target in Makefile
The first patch will make "make install-strip" work.  The second spends
a few cycles avoiding "1 files to consider."  Both are trivial but IMHO
useful.
--- Makefile.orig	Wed Mar 13 06:38:42 2002
+++ Makefile	Wed Mar 13 06:40:58 2002
@@ -12,6 +12,7 @@
 LDFLAGS=
 
 INSTALLCMD=/bin/install -c
+INSTALLMAN=/bin/install -c
 
 srcdir=.
 
@@ -56,8 +57,8 @@
 	${INSTALLCMD} -m 755 rsync
2002 Jul 12
0
Installation
Hello,
I can not install rsync 2.5.5. on a Caldera Open Unix 8.0.0 Operating
System.
After ./configure I enter the command  "make" and I get the following
Message:
UX:make: FEHLER: Zeile 66: Syntaxfehler
Where can I get help?
I add the files: config.log and Makefile.
P. Schnickmann
-------------- next part --------------
This file contains any messages produced by compilers while
running
2003 Jan 16
1
Possible patch for Irix Makefile problem
I am guessing that since the error is on the first instance of
the use of
     foo$(VAR): foo.o
construct, that the Irix makefile parser doesn't know how to
deal with this line.  Obviously they don't use GNU make....
So here is a patch to Makefile.in that simplifies the use of
variables.  This only uses constructs that should work in all
makes.  It should not break anything, and it
2002 Nov 20
0
[PATCH] Updated patch to rsync for Stratus VOS
This is an updated version of my patches to get rsync to build
and run its tests on the Stratus VOS operating system.
I have updated this patch to apply cleanly to the current copy
of HEAD.  I also ran the test suite and discovered that I needed
to tweak a few spots in the Makefile to append the executable
suffix (VOS is one of the few systems that has a required
executable suffix).  There are a
2002 Feb 06
1
2.5.2 will not compile
Trying to compile rsync 2.5.2 after "./configure  --prefix=/usr"
I get the following make errors:
   gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -c rsync.c -o rsync.o
   In file included from rsync.c:23:
   rsync.h:339: warning: no semicolon at end of struct or union
   rsync.h:339: parse error before `inode'
   rsync.h:341: parse error before `dev'
   rsync.h:341: warning: type
2013 Dec 07
2
[PATCH 1/2] Fix installing man-pages from out-of-tree build
---
 po-docs/ja/Makefile.am | 6 +++---
 po-docs/uk/Makefile.am | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/po-docs/ja/Makefile.am b/po-docs/ja/Makefile.am
index da1bcc3..820f91a 100644
--- a/po-docs/ja/Makefile.am
+++ b/po-docs/ja/Makefile.am
@@ -160,8 +160,8 @@ $(podfiles):
 # XXX Can automake do this properly?
 install-data-hook:
 	$(MKDIR_P)
2015 Oct 22
2
[PATCH 1/2] build: isolate common po-docs logic
Move most of the content of either po-docs/ja/Makefile.am or
po-docs/uk/Makefile.am to po-docs/language.mk, and use it exclusively
instead of the former contents of the languange-specific Makefile.am.
This way, either adding a new documentation or enabling a new language
will not require copying over the same make code.
---
 po-docs/ja/Makefile.am | 174 +-------------------------------------------
2002 Mar 06
2
Compile 2.5.2 on RedHat 6.2
I am running RedHat 6.2 on many of my servers and am receiving the following 
errors when compiling Rsync 2.5.2:
[root@wrapguy rsync-2.5.2]# make
gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -c rsync.c -o rsync.o
In file included from rsync.c:23:
rsync.h:339: warning: no semicolon at end of struct or union
rsync.h:339: parse error before `inode'
rsync.h:341: parse error before `dev'
2009 Dec 17
1
[PATCH] contrib/cygwin/Makefile: Install ssh-copy-id
Hi,
could somebody with checkin rights please apply the below patch
to the Cygwin postinstall Makefile?  The patch adds two changes:
- Install ssh-copy-id and ssh-copy-id.1 as well.
- Gzip all man pages.
Thanks in advance,
Corinna
Index: contrib/cygwin/Makefile
===================================================================
RCS file: /cvs/openssh/contrib/cygwin/Makefile,v
retrieving
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
2006 Jun 07
1
RPM spec file
Hi,
To to build an RPM from the nut 2.0.3 source I've corrected the old 
nut.spec.in file.  Please find a copy of the slightly updated spec file 
attached.  The changes are documented at the bottom of the spec file.
Regards,
Will
-------------- next part --------------
# don't know how different I can do this
%define majorver 2.0
%define version 2.0.3
%define relver 1
%define nutuser
2003 Jan 28
2
rsync-2.5.6 build on Red Hat 8.0 fails
The packaging/lsb/rsync.spec file is broken as shipped: It has a "Sept"
month (rpmbuild here takes only 3-letter month names), and RH gzips the
manpages, so the %files list can't find them. I also added doc/README-SGML
and doc/rsync.sgml to the %doc files. Patch follows.
Thanks for all the good work!
--- rsync-2.5.6/packaging/lsb/rsync.spec.orig	2003-01-28 06:28:35.000000000 +0100
2010 Feb 09
1
(no subject)
Hi, Anyone!
Help me get Samba compiled, if you can. Latest Samba, freshest FreeBSD 8.0. So, full steps:
fetch http://www.samba.org/samba/ftp/stable/samba-3.4.5.tar.gz
tar zxf samba-3.4.5.tar.gz ; cd samba-3.4.5/source3
./configure --prefix=/usr/local --with-configdir=/usr/local/etc --with-mandir=/usr/share/man --with-libiconv=/usr/local --with-krb5=/usr/local \
 --enable-swat
2002 Mar 07
0
make error during rsync-up
Hi, everyone~
I want to update rsynd from rsyncd-2.4.4.
but I have a matter updating rsyncd-2.5.2
That is make failed.
My server is based RedHat-7.0.
My configure is successful because i saw message That
is 'rsync 2.5.2 configuration successful."
This is error messages.
I want your advice about This problem.
Thank you.
================================ cut
[root@ux001 rsync-2.5.2]#
2002 May 29
0
Need help compiling on HPUX 11.00 for 2.2.4
I am getting the following errors when compiling SAMBA 2.2.4 on HP-UX 11.00.
Anyone have any ideas on what's causing the problem?
Using FLAGS =  -O  -I./popt -Iinclude -I./include -I./ubiqx -I./smbwrapper
-D_HPUX_SOURCE -D_POSIX_SOURCE -D_LARGEFILE64_SOURCE -D_ALIGNMENT_REQUIRED=1
-D_MAX_ALIGNMENT=4 -DLOGFILEBASE="/opt/samba/var"
-DCONFIGFILE="/opt/samba/etc/smb.conf"
2002 May 28
0
link errors compiling 2.2.4 on HP-UX 11.00
I am getting the following link errors when compiling SAMBA 2.2.4 on HP-UX
11.00.  Anyone have any ideas on what's causing the problem?
Using FLAGS =  -O  -I./popt -Iinclude -I./include -I./ubiqx -I./smbwrapper
-D_HPUX_SOURCE -D_POSIX_SOURCE -D_LARGEFILE64_SOURCE -D_ALIGNMENT_REQUIRED=1
-D_MAX_ALIGNMENT=4 -DLOGFILEBASE="/opt/samba/var"
2007 Feb 28
2
VFS module and C++
Hi
I need to write a simple VFS module and I have to use C++ instead of C.
I took sample files, compiled it and everything does work. However, when
I compile it as C++, during the runtime I can see errors in the log:
Can't find a vfs module.
I am not experienced C or C++ programmer in linux environment, probably
I do some silly mistake, but I am really stucked now. I am using Samba
version
2001 Feb 07
2
Patch for unformatted manpages
The attached patch (relative to the current CVS snapshot) uses a perl
script to convert the OpenSSH manpages from the BSD -mdoc format to
the -man format used by other systems.  This allows the unformatted
manpages to be installed normally, rather than defaulting to
preformatted pages.
I'd like to see this patch integrated into the portable version of
OpenSSH.  Please let me know what you