From 0e13924b429add47e0a7bb15ad11a3591662a306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Sat, 10 Feb 1996 23:05:23 +0100 Subject: [PATCH] nice to have Rev: src/run_autoconfig:1.1 --- src/run_autoconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 src/run_autoconfig diff --git a/src/run_autoconfig b/src/run_autoconfig new file mode 100755 index 0000000000..52966349fe --- /dev/null +++ b/src/run_autoconfig @@ -0,0 +1,16 @@ +#!/bin/sh + +autoconf +cd modules +for a in * +do + case $a in + CVS) ;; + RCS) ;; + *) + if [ -d $a ]; then + ( cd $a ; autoconf ) + fi + ;; + esac +done \ No newline at end of file -- GitLab