patches/uClibc/0.9.32/100-bump-version-to-0.9.32.1-git.patch
author Anthony Foiani <anthony.foiani@gmail.com>
Thu Apr 26 19:55:59 2012 -0600 (2012-04-26)
changeset 2939 58974be61289
permissions -rw-r--r--
Allow multi-word "install" command.

Autoconf can determine that the correct install command includes flags,
e.g., "/usr/bin/install -c". When using this as a command, we can't
enclose the value in double-quotes, as that makes some shells use the
whole expression as a filename:

# this is the value returned by autoconf and stored in CT_install
$ ins="/usr/bin/install -c"

# if we call it with quotes, the command is not found
$ "${ins}"
bash: /usr/bin/install -c: No such file or directory

# removing the quotes lets it work as expected
$ ${ins}
/usr/bin/install: missing file operand
Try `/usr/bin/install --help' for more information.

Signed-Off-By: Anthony Foiani <anthony.foiani@gmail.com>
yann@2518
     1
commit 608e138586993d3c59c65c2958d9a98cf0d4d1eb
yann@2518
     2
Author: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
yann@2518
     3
Date:   Wed Jun 8 21:47:42 2011 +0200
yann@2518
     4
yann@2518
     5
    bump version to 0.9.32.1-git
yann@2518
     6
    
yann@2518
     7
    Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
yann@2518
     8
yann@2518
     9
diff --git a/Rules.mak b/Rules.mak
yann@2518
    10
index fe06c24..a00deea 100644
yann@2518
    11
--- a/Rules.mak
yann@2518
    12
+++ b/Rules.mak
yann@2518
    13
@@ -106,7 +106,7 @@ export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS MULTILIB_DIR
yann@2518
    14
 MAJOR_VERSION := 0
yann@2518
    15
 MINOR_VERSION := 9
yann@2518
    16
 SUBLEVEL      := 32
yann@2518
    17
-EXTRAVERSION  :=
yann@2518
    18
+EXTRAVERSION  :=.1-git
yann@2518
    19
 VERSION       := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
yann@2518
    20
 ABI_VERSION   := $(MAJOR_VERSION)
yann@2518
    21
 ifneq ($(EXTRAVERSION),)