gephex--main--0.4--patch-1795
| Newsgroups | gmane.comp.video.gephex.devel |
|---|---|
| Message-ID | <[email protected]> |
Archive: [email protected] New revision: gephex--main--0.4--patch-1795 -- Revision: gephex--main--0.4--patch-1795 Archive: [email protected] Creator: GePhex <[email protected]> Date: Wed Sep 29 04:26:09 CEST 2004 Standard-date: 2004-09-29 02:26:09 GMT Modified-files: bootstrap.sh New-patches: [email protected]/gephex--main--0.4--patch-1795 [email protected]/gephex--force-autotools-version--0.4--patch-2 Summary: remove non posix usage of head (from Michael Mandl) Keywords: Patches applied: * [email protected]/gephex--force-autotools-version--0.4--patch-2 remove head -1 usage from bootstrap.sh (patch from Michael Mandl) * added files {arch}/gephex/gephex--force-autotools-version/gephex--force-autotools-version--0.4/[email protected]/patch-log/patch-2 {arch}/gephex/gephex--main/gephex--main--0.4/[email protected]/patch-log/patch-1795 * modified files --- orig/bootstrap.sh +++ mod/bootstrap.sh @@ -3,7 +3,7 @@ #! /bin/sh # Check Autoconf version if [ -x `which autoconf` ]; then - AC_VER=`autoconf --version | head -1 | sed 's/^[^0-9]*//'` + AC_VER=`autoconf --version | head -n 1 | sed 's/^[^0-9]*//'` AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'` AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`