From 0767cff62425ff7b90775e57902e90db8ca09200 Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Fri, 21 Jun 2013 01:36:44 +1000 Subject: autogen'd for 1.4.1 --- heimdall/ar-lib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'heimdall/ar-lib') diff --git a/heimdall/ar-lib b/heimdall/ar-lib index fe2301e..67f5f36 100755 --- a/heimdall/ar-lib +++ b/heimdall/ar-lib @@ -4,7 +4,7 @@ me=ar-lib scriptversion=2012-03-01.08; # UTC -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2012 Free Software Foundation, Inc. # Written by Peter Rosin . # # This program is free software; you can redistribute it and/or modify -- cgit v1.1 From fbebc394f441e35e4777868627b4d2d1ec349a6b Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Sun, 1 Jun 2014 14:49:56 +1000 Subject: Autogen'd files for Heimdall 1.4.1 --- heimdall/ar-lib | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'heimdall/ar-lib') diff --git a/heimdall/ar-lib b/heimdall/ar-lib index 67f5f36..c0286a4 100755 --- a/heimdall/ar-lib +++ b/heimdall/ar-lib @@ -2,9 +2,9 @@ # Wrapper for Microsoft lib.exe me=ar-lib -scriptversion=2012-03-01.08; # UTC +scriptversion=2012-01-30.22; # UTC -# Copyright (C) 2010-2012 Free Software Foundation, Inc. +# Copyright (C) 2010, 2012 Free Software Foundation, Inc. # Written by Peter Rosin . # # This program is free software; you can redistribute it and/or modify @@ -153,9 +153,7 @@ action=${action#-} delete= extract= list= -quick= replace= -index= create= while test -n "$action" @@ -164,10 +162,7 @@ do d*) delete=yes ;; x*) extract=yes ;; t*) list=yes ;; - q*) quick=yes ;; r*) replace=yes ;; - s*) index=yes ;; - S*) ;; # the index is always updated implicitly c*) create=yes ;; u*) ;; # TODO: don't ignore the update modifier v*) ;; # TODO: don't ignore the verbose modifier @@ -178,8 +173,8 @@ do action=${action#?} done -case $delete$extract$list$quick$replace,$index in - yes,* | ,yes) +case $delete$extract$list$replace in + yes) ;; yesyes*) func_error "more than one action specified" @@ -230,7 +225,7 @@ elif test -n "$extract"; then done fi -elif test -n "$quick$replace"; then +elif test -n "$replace"; then if test ! -f "$orig_archive"; then if test -z "$create"; then echo "$me: creating $orig_archive" -- cgit v1.1 From b22ae7b89f7993f632e10e18c116f293f314575f Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Thu, 19 Feb 2015 03:13:56 +1100 Subject: Removed autotools and VS files, and standardised source dir naming --- heimdall/ar-lib | 265 -------------------------------------------------------- 1 file changed, 265 deletions(-) delete mode 100755 heimdall/ar-lib (limited to 'heimdall/ar-lib') diff --git a/heimdall/ar-lib b/heimdall/ar-lib deleted file mode 100755 index c0286a4..0000000 --- a/heimdall/ar-lib +++ /dev/null @@ -1,265 +0,0 @@ -#! /bin/sh -# Wrapper for Microsoft lib.exe - -me=ar-lib -scriptversion=2012-01-30.22; # UTC - -# Copyright (C) 2010, 2012 Free Software Foundation, Inc. -# Written by Peter Rosin . -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# This file is maintained in Automake, please report -# bugs to or send patches to -# . - - -# func_error message -func_error () -{ - echo "$me: $1" 1>&2 - exit 1 -} - -file_conv= - -# func_file_conv build_file -# Convert a $build file to $host form and store it in $file -# Currently only supports Windows hosts. -func_file_conv () -{ - file=$1 - case $file in - / | /[!/]*) # absolute file, and not a UNC file - if test -z "$file_conv"; then - # lazily determine how to convert abs files - case `uname -s` in - MINGW*) - file_conv=mingw - ;; - CYGWIN*) - file_conv=cygwin - ;; - *) - file_conv=wine - ;; - esac - fi - case $file_conv in - mingw) - file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` - ;; - cygwin) - file=`cygpath -m "$file" || echo "$file"` - ;; - wine) - file=`winepath -w "$file" || echo "$file"` - ;; - esac - ;; - esac -} - -# func_at_file at_file operation archive -# Iterate over all members in AT_FILE performing OPERATION on ARCHIVE -# for each of them. -# When interpreting the content of the @FILE, do NOT use func_file_conv, -# since the user would need to supply preconverted file names to -# binutils ar, at least for MinGW. -func_at_file () -{ - operation=$2 - archive=$3 - at_file_contents=`cat "$1"` - eval set x "$at_file_contents" - shift - - for member - do - $AR -NOLOGO $operation:"$member" "$archive" || exit $? - done -} - -case $1 in - '') - func_error "no command. Try '$0 --help' for more information." - ;; - -h | --h*) - cat <