You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by Greg Stein <gs...@lyra.org> on 2001/01/18 10:20:53 UTC

Re: cvs commit: apr-util Makefile.in STATUS aprutil.dsp configure.in libaprutil.dsp

On Thu, Jan 18, 2001 at 04:34:44AM -0000, wrowe@apache.org wrote:
> wrowe       01/01/17 20:34:44
> 
>   Modified:    .        STATUS
>                .        Makefile.in STATUS aprutil.dsp configure.in
>                         libaprutil.dsp
>   Log:
>     Upon a vote of 5 to 3 for eliminating the src/ structure, and unanimous
>     consent that apr and apr-util should share a common structure, the src/
>     branch of apr-util is orphaned.  These files will be deleted at T+1200
>     from the time of this commit, so if you have changes out there, save
>     them in the new structure or set them aside.  cvs update will destroy
>     them as of tommorow morning.
>   
>     Win32 build is corrected, unix may (?) be corrected (please review.)
>...
>   --- Makefile.in	2001/01/09 09:41:26	1.17
>   +++ Makefile.in	2001/01/18 04:34:43	1.18
>   @@ -10,7 +10,7 @@
>    # bring in rules.mk for standard functionality
>    @INCLUDE_RULES@
>    
>   -SUBDIRS = src . test build
>   +SUBDIRS = buckets crypto dbm encoding hooks uri xml . test build
>    
>    CLEAN_TARGETS = $(TARGET_EXPORTS)
>    DISTCLEAN_TARGETS = config.cache config.log config.status \
>   @@ -24,7 +24,7 @@
>    
>    delete-lib:
>    	@if test -f $(TARGET_LIB); then \
>   -	    objects="`find src -name '*.lo' -a -newer $(TARGET_LIB)`" ; \
>   +	    objects="`find . -name '*.lo' -a -newer $(TARGET_LIB)`" ; \
>    	    if test -n "$$objects"; then \
>    		echo Found newer objects. Will relink $(TARGET_LIB). ; \
>    		echo $(RM) -f $(TARGET_LIB) ; \
>   @@ -33,7 +33,7 @@
>    	fi
>    
>    $(TARGET_LIB):
>   -	@objects="`find src -name '*.lo'`" ; \
>   +	@objects="`find . -name '*.lo'`" ; \
>    	    echo $(LINK) $$objects ; \
>    	    $(LINK) -rpath $(libdir) $$objects

If you're going to advocate the non-src position, then you better get the
damned thing right.

"." is not going to work. Think about the "test" directory.

-g

-- 
Greg Stein, http://www.lyra.org/