Subject: Re: CVS commit: src/etc
To: Matthias Scheler <tron@netbsd.org>
From: Luke Mewburn <lukem@netbsd.org>
List: source-changes
Date: 12/30/2002 23:48:08
On Mon, Dec 30, 2002 at 02:24:46PM +0200, Matthias Scheler wrote:
  | 
  | Module Name:	src
  | Committed By:	tron
  | Date:		Mon Dec 30 12:24:46 UTC 2002
  | 
  | Modified Files:
  | 	src/etc: postinstall
  | 
  | Log Message:
  | Fix postinstall message for builds with "${DESTDIR}" set to "/".

Was the problem when DESTDIR was set to `/' or when DESTDIR was set to "" ?

If the latter, instead of "$(DESTDIR}/", we could use "${DESTDIR:-/}",
which looks better if DESTDIR == / (doesn't print "//" in that case).