summaryrefslogtreecommitdiff
path: root/packages/lisa/lisa-0.2.2/head-n.patch
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
committerDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
commit709c4d66e0b107ca606941b988bad717c0b45d9b (patch)
tree37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/lisa/lisa-0.2.2/head-n.patch
parentfa6cd5a3b993f16c27de4ff82b42684516d433ba (diff)
rename packages/ to recipes/ per earlier agreement
See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko <denis@denix.org> Acked-by: Mike Westerhof <mwester@dls.net> Acked-by: Philip Balister <philip@balister.org> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Marcin Juszkiewicz <hrw@openembedded.org> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/lisa/lisa-0.2.2/head-n.patch')
-rw-r--r--packages/lisa/lisa-0.2.2/head-n.patch76
1 files changed, 0 insertions, 76 deletions
diff --git a/packages/lisa/lisa-0.2.2/head-n.patch b/packages/lisa/lisa-0.2.2/head-n.patch
deleted file mode 100644
index 36d2a2a101..0000000000
--- a/packages/lisa/lisa-0.2.2/head-n.patch
+++ /dev/null
@@ -1,76 +0,0 @@
---- lisa-0.2.2/admin/cvs.sh.orig 2002-10-05 06:19:37.000000000 +0200
-+++ lisa-0.2.2/admin/cvs.sh 2004-06-19 15:46:55.000000000 +0200
-@@ -27,7 +27,7 @@
-
- check_autotool_versions()
- {
--AUTOCONF_VERSION=`$AUTOCONF --version | head -1`
-+AUTOCONF_VERSION=`$AUTOCONF --version | head -n 1`
- case $AUTOCONF_VERSION in
- Autoconf*2.5* | autoconf*2.5* ) : ;;
- "" )
-@@ -42,7 +42,7 @@
- ;;
- esac
-
--AUTOHEADER_VERSION=`$AUTOHEADER --version | head -1`
-+AUTOHEADER_VERSION=`$AUTOHEADER --version | head -n 1`
- case $AUTOHEADER_VERSION in
- Autoconf*2.5* | autoheader*2.5* ) : ;;
- "" )
-@@ -57,7 +57,7 @@
- ;;
- esac
-
--AUTOMAKE_STRING=`$AUTOMAKE --version | head -1`
-+AUTOMAKE_STRING=`$AUTOMAKE --version | head -n 1`
- case $AUTOMAKE_STRING in
- automake*1.5d* )
- echo "*** YOU'RE USING $AUTOMAKE_STRING."
-@@ -241,10 +241,10 @@
- echo "AC_OUTPUT" >> configure.in.new
- modulename=
- if test -f configure.in.in; then
-- if head -2 configure.in.in | egrep "^#MIN_CONFIG\(.*\)$" > /dev/null; then
-+ if head -n 2 configure.in.in | egrep "^#MIN_CONFIG\(.*\)$" > /dev/null; then
- kde_use_qt_param=`cat configure.in.in | sed -n -e "s/#MIN_CONFIG(\(.*\))/\1/p"`
- fi
-- if head -2 configure.in.in | egrep "^#MIN_CONFIG" > /dev/null; then
-+ if head -n 2 configure.in.in | egrep "^#MIN_CONFIG" > /dev/null; then
- line=`grep "^AM_INIT_AUTOMAKE(" configure.in.in`
- if test -n "$line"; then
- modulename=`echo $line | sed -e "s#AM_INIT_AUTOMAKE(\([^,]*\),.*#\1#"`
-@@ -284,7 +284,7 @@
- done
- rm -f configure.files
- touch configure.files
--if test -f configure.in.in && head -2 configure.in.in | grep "^#MIN_CONFIG" > /dev/null; then
-+if test -f configure.in.in && head -n 2 configure.in.in | grep "^#MIN_CONFIG" > /dev/null; then
- echo $admindir/configure.in.min >> configure.files
- fi
- test -f configure.in.in && echo configure.in.in >> configure.files
-@@ -299,8 +299,8 @@
- subdirs()
- {
- dirs=
--compilefirst=`sed -ne 's#^COMPILE_FIRST[ ]*=[ ]*##p' $makefile_am | head -1`
--compilelast=`sed -ne 's#^COMPILE_LAST[ ]*=[ ]*##p' $makefile_am | head -1`
-+compilefirst=`sed -ne 's#^COMPILE_FIRST[ ]*=[ ]*##p' $makefile_am | head -n 1`
-+compilelast=`sed -ne 's#^COMPILE_LAST[ ]*=[ ]*##p' $makefile_am | head -n 1`
- for i in `ls -1`; do
- if test -f $i/Makefile.am; then
- case " $compilefirst $compilelast " in
-@@ -317,11 +317,11 @@
- done
-
- (for d in $dirs; do
-- list=`sed -ne "s#^COMPILE_BEFORE_$d""[ ]*=[ ]*##p" $makefile_am | head -1`
-+ list=`sed -ne "s#^COMPILE_BEFORE_$d""[ ]*=[ ]*##p" $makefile_am | head -n 1`
- for s in $list; do
- echo $s $d
- done
-- list=`sed -ne "s#^COMPILE_AFTER_$d""[ ]*=[ ]*##p" $makefile_am | head -1`
-+ list=`sed -ne "s#^COMPILE_AFTER_$d""[ ]*=[ ]*##p" $makefile_am | head -n 1`
- for s in $list; do
- echo $d $s
- done