[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Increasing regularity of build systems



On Tue, 14 Sep 1999, Ben Collins wrote:
> These builds need something like:
> 
> 	if [ ! -f stamp-configure ]; then \
> 		./configure ; \
> 		touch stamp-configure; \
> 	fi

What you want is:

 if [ \! -f config.status ]; then ./configure; fi


Reply to: