~ubuntu-branches/ubuntu/utopic/linuxlogo/utopic-proposed

« back to all changes in this revision

Viewing changes to configure

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-07-14 12:40:04 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090714124004-oacwhjx94isy0zaz
Tags: 5.06-1
* Merging upstream version 5.06:
  - Fixes problem with logo naming (Closes: #510813).
* Readding default logo in linux_logo.conf.
* Removing dash.patch, not required anymore.
* Updating logo list in linux_logo.conf.
* Renaming directory for local debian additions to more common name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
}
16
16
 
17
17
while [ $# -gt 0  ]
18
 
 
19
18
do
20
19
   case "${1%=*}" in
21
20
      -h|--help) usage;;
22
 
      --prefix) PREFIX="${1#*=}"; shift;;
23
 
      *) break;; # terminate while loop
 
21
      --prefix) PREFIX="${1#*=}";;
24
22
   esac
25
23
   shift
26
24
done
27
 
                                       
28
 
 
29
 
ARCH=`uname -m`
 
25
 
 
26
if [ -z "$ARCH" ]; then
 
27
   ARCH=`uname -m`
 
28
fi
 
29
 
30
30
OS=`uname`
31
31
INSTALL=`which install`
32
32
 
104
104
echo
105
105
cd $LIBSYSINFO && ./configure
106
106
echo
107
 
echo "If cross compiling set the CROSS variable"
 
107
echo "If cross compiling set the CROSS and ARCH variables"
108
108
echo 
109
109
echo "Done configuring, run 'make'"
110
110
echo