[netfilter-cvslog] r4427 - trunk/libnfnetlink

laforge at netfilter.org laforge at netfilter.org
Wed Nov 2 18:52:27 CET 2005


Author: laforge at netfilter.org
Date: 2005-11-02 18:52:27 +0100 (Wed, 02 Nov 2005)
New Revision: 4427

Removed:
   trunk/libnfnetlink/mkinstalldirs
Modified:
   trunk/libnfnetlink/autogen.sh
Log:
o Kill mkinstalldirs: the auto* stuff gets it by itself when autogen.sh is called. 
o cat autogen.sh | sed 's/aclocal-1.6/aclocal/g'
o cat autogen.sh | sed 's/automake-1.6/automake/g' 


Modified: trunk/libnfnetlink/autogen.sh
===================================================================
--- trunk/libnfnetlink/autogen.sh	2005-11-02 17:49:05 UTC (rev 4426)
+++ trunk/libnfnetlink/autogen.sh	2005-11-02 17:52:27 UTC (rev 4427)
@@ -11,8 +11,8 @@
     fi
 }
 
-run aclocal-1.6
+run aclocal
 #run autoheader
 run libtoolize -f
-run automake-1.6 -a
+run automake -a
 run autoconf

Deleted: trunk/libnfnetlink/mkinstalldirs
===================================================================
--- trunk/libnfnetlink/mkinstalldirs	2005-11-02 17:49:05 UTC (rev 4426)
+++ trunk/libnfnetlink/mkinstalldirs	2005-11-02 17:52:27 UTC (rev 4427)
@@ -1,40 +0,0 @@
-#! /bin/sh
-# mkinstalldirs --- make directory hierarchy
-# Author: Noah Friedman <friedman at prep.ai.mit.edu>
-# Created: 1993-05-16
-# Public domain
-
-# $Id: mkinstalldirs,v 1.1 2002/01/16 16:15:22 laforge Exp $
-
-errstatus=0
-
-for file
-do
-   set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
-   shift
-
-   pathcomp=
-   for d
-   do
-     pathcomp="$pathcomp$d"
-     case "$pathcomp" in
-       -* ) pathcomp=./$pathcomp ;;
-     esac
-
-     if test ! -d "$pathcomp"; then
-        echo "mkdir $pathcomp"
-
-        mkdir "$pathcomp" || lasterr=$?
-
-        if test ! -d "$pathcomp"; then
-  	  errstatus=$lasterr
-        fi
-     fi
-
-     pathcomp="$pathcomp/"
-   done
-done
-
-exit $errstatus
-
-# mkinstalldirs ends here




More information about the netfilter-cvslog mailing list