rsync installation _error exit code1

Matt McCutchen matt at mattmccutchen.net
Wed Apr 9 00:44:33 GMT 2008


On Tue, 2008-04-08 at 14:28 +0530, sri vasulu wrote:
> Here i am trying to install rsync3.0.1 on HP-UNIX machine. i have
> downloaded the source rsync-3.0.1.tar&rsync-patches-3.0.1.tar from
> rsync website.
> After that i have executed the ./configure, it got executed it
> displayed message as  rsync 3.0.1 configuration successful.
> In Makefile.in i have changed environment variable CC=@CC@  to
> CC=@usr/local/bin/gcc.

The configure script determines the CC variable for your system (among
other variables) and then copies Makefile.in to Makefile, replacing
tokens like @CC@ with the appropriate values.  The right way to set a
variable like CC is on the ./configure command line:

./configure CC=/usr/local/bin/gcc

If you insist on modifying Makefile.in, you need to delete the @ sign
because it is a marker for the configure script to replace, not part of
the makefile syntax.  This explains your "make install" error.

> after executing the make command i am getting the following error
> =============================================
> inccishh0125 703: make
>  config.status: creating Makefile
> config.status: creating lib/dummy
> config.status: creating zlib/dummy
> config.status: creating popt/dummy
> config.status: creating shconfig
> config.status: creating config.h
> config.status: config.h is unchanged
> Makefile updated -- rerun your make command.
> Make: Cannot load exit.  Stop.
> *** Error exit code 1
> Stop.
> ================================================

It looks like something, perhaps your modification to Makefile.in,
triggered the rule that updates Makefile.  If this happens, do what the
message says and run "make" again.  If the same thing keeps happening,
you can delete the rule from Makefile.  The rule looks like this:

Makefile: Makefile.in config.status
        @./config.status
        @echo "Makefile updated -- rerun your make command."
        @exit 1

Good luck.

Matt
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: This is a digitally signed message part
Url : http://lists.samba.org/archive/rsync/attachments/20080408/213a824d/attachment.bin


More information about the rsync mailing list