[rt-devel] RE: [rt-users] Installing 1.3.29

Byron Ellacott bje at apnic.net
Wed Jan 3 18:19:33 EST 2001


On Wed, 3 Jan 2001, eOk wrote:

> # We don't need to do this anymore. all we want to copy is config.pm
> # That gets done elsewhere
> #cp -rp ./etc/* /export/rt2/etc

Further to this, on line 274/275 of Makefile:

config-replace:
        [ -f $(RT_CONFIG) ] && mv $(RT_CONFIG) $(RT_CONFIG).old

This will cause the makefile to fail if the test fails, since the result
of the statement will be false - this breaks a clean installation.  Adding
a - to the start of the command will cause make to ignore the exit status:

	-[ -f $(RT_CONFIG) ] && mv $(RT_CONFIG) $(RT_CONFIG).old

-- 
bje





More information about the Rt-devel mailing list