]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
buildroot: remove trailing spaces
authorPeter Korsgaard <jacmet@sunsite.dk>
Mon, 4 Aug 2008 19:07:05 +0000 (19:07 -0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Mon, 4 Aug 2008 19:07:05 +0000 (19:07 -0000)
for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`;
do
sed -i 's/ \+$//' $i;
done

119 files changed:
Config.in
Makefile
package/Config.in
package/Makefile.autotools.in
package/ace_of_penguins/ace_of_penguins.mk
package/atk/atk.mk
package/autoconf/Config.in
package/automake/Config.in
package/berkeleydb/Config.in
package/bind/Config.in
package/bison/Config.in
package/blackbox/blackbox.mk
package/boa/Config.in
package/bootutils/Config.in
package/bzip2/Config.in
package/cairo/cairo.mk
package/coreutils/Config.in
package/distcc/Config.in
package/dnsmasq/Config.in
package/docker/docker.mk
package/editors/ed/Config.in
package/editors/nano/Config.in
package/festival/speech-tools/speech-tools.mk
package/file/Config.in
package/findutils/Config.in
package/flex/Config.in
package/fltk/fltk.mk
package/gawk/Config.in
package/gnuchess/gnuchess.mk
package/gzip/Config.in
package/hostap/Config.in
package/icu/icu.mk
package/ipkg/ipkg.mk
package/iproute2/Config.in
package/ipsec-tools/Config.in
package/irda-utils/Config.in
package/java/classpath/classpath.mk
package/java/concierge/concierge.mk
package/java/jamvm/Config.in
package/java/jamvm/jamvm.mk
package/kismet/Config.in
package/libcgi/Config.in
package/libdaemon/Config.in
package/libeXosip2/Config.in
package/libeXosip2/libeXosip2.mk
package/libfloat/Config.in
package/libgcrypt/Config.in
package/libglib2/libglib2.mk
package/libgtk2/libgtk2.mk
package/libiconv/libiconv.mk
package/libosip2/Config.in
package/libsndfile/Config.in
package/libtool/Config.in
package/lighttpd/Config.in
package/lighttpd/lighttpd.mk
package/lsof/Config.in
package/lxdoom/lxdoom-wad.mk
package/lxdoom/lxdoom.mk
package/magiccube4d/magiccube4d.mk
package/make/Config.in
package/microperl/Config.in
package/microwin/Config.in
package/module-init-tools/Config.in
package/modutils/Config.in
package/ncurses/Config.in
package/neon/Config.in
package/netcat/Config.in
package/netsnmp/Config.in
package/ng-spice-rework/ng-spice-rework.mk
package/ntfs-3g/ntfs-3g.mk
package/olsr/Config.in
package/openmotif/openmotif.mk
package/openssh/Config.in
package/openssl/Config.in
package/openvpn/Config.in
package/oprofile/Config.in
package/pango/pango.mk
package/patch/Config.in
package/php/Config.in
package/php/php.mk
package/popt/popt.mk
package/python/Config.in
package/qtopia4/Config.in
package/rubix/rubix.mk
package/screen/Config.in
package/speex/Config.in
package/startup-notification/startup-notification.mk
package/strace/Config.in
package/synergy/Config.in
package/synergy/synergy.mk
package/tar/Config.in
package/tinyhttpd/Config.in
package/tinyhttpd/tinyhttpd.mk
package/tinylogin/Config.in
package/torsmo/torsmo.mk
package/udhcp/Config.in
package/vice/vice.mk
package/vlc/vlc.mk
package/vtun/Config.in
package/webkit/Config.in
package/webkit/webkit.mk
package/x11r7/pthread-stubs/Config.in
package/x11r7/xkeyboard-config/xkeyboard-config.mk
package/xpdf/xpdf.mk
package/zlib/Config.in
target/Config.in.arch
target/cpio/Config.in
target/device/Atmel/Config.in.mirrors
target/device/Atmel/arch-avr32/Config.in.linux.patches
target/device/Sharp/Config.in
target/initramfs/Config.in
target/linux/Config.in.advanced
target/linux/Makefile.in
target/linux/Makefile.in.advanced
target/x86/grub/Config.in
target/x86/grub2/Config.in
toolchain/Config.in
toolchain/uClibc/Config.in
toolchain/uClibc/uclibc.mk

index b49425ce51092de0ebf81b320f1fee8b046cc13c..5522b7cff6735d133afd1523c61bf9a3f96c690e 100644 (file)
--- a/Config.in
+++ b/Config.in
@@ -207,9 +207,9 @@ choice
 config BR2_DEBUG_1
        bool "debug level 1"
        help
-         Debug level 1 produces minimal information, enough 
-         for making backtraces in parts of the program that 
-         you don't plan to debug. This includes descriptions 
+         Debug level 1 produces minimal information, enough
+         for making backtraces in parts of the program that
+         you don't plan to debug. This includes descriptions
          of functions and external variables, but no information
          about local variables and no line numbers.
 
@@ -221,7 +221,7 @@ config BR2_DEBUG_2
 config BR2_DEBUG_3
        bool "debug level 3"
        help
-         Level 3 includes extra information, such as all the 
+         Level 3 includes extra information, such as all the
          macro definitions present in the program. Some debuggers
          support macro expansion when you use -g3.
 endchoice
@@ -266,41 +266,41 @@ config BR2_OPTIMIZE_0
        bool "optimization level 0"
        depends on !BR2_PACKAGE_LINUX
        help
-         Do not optimize. This is the default. 
+         Do not optimize. This is the default.
 
 config BR2_OPTIMIZE_1
        bool "optimization level 1"
        depends on !BR2_PACKAGE_LINUX
        help
-         Optimize. Optimizing compilation takes somewhat more time, 
-         and a lot more memory for a large function. With -O, the 
-         compiler tries to reduce code size and execution time, 
-         without performing any optimizations that take a great deal 
-         of compilation time. -O turns on the following optimization 
-         flags: -fdefer-pop -fdelayed-branch -fguess-branch-probability 
-         -fcprop-registers -floop-optimize -fif-conversion 
-         -fif-conversion2 -ftree-ccp -ftree-dce -ftree-dominator-opts 
-         -ftree-dse -ftree-ter -ftree-lrs -ftree-sra -ftree-copyrename 
+         Optimize. Optimizing compilation takes somewhat more time,
+         and a lot more memory for a large function. With -O, the
+         compiler tries to reduce code size and execution time,
+         without performing any optimizations that take a great deal
+         of compilation time. -O turns on the following optimization
+         flags: -fdefer-pop -fdelayed-branch -fguess-branch-probability
+         -fcprop-registers -floop-optimize -fif-conversion
+         -fif-conversion2 -ftree-ccp -ftree-dce -ftree-dominator-opts
+         -ftree-dse -ftree-ter -ftree-lrs -ftree-sra -ftree-copyrename
          -ftree-fre -ftree-ch -funit-at-a-time -fmerge-constants
-         -O also turns on -fomit-frame-pointer on machines where doing 
+         -O also turns on -fomit-frame-pointer on machines where doing
          so does not interfere with debugging.
 
 config BR2_OPTIMIZE_2
        bool "optimization level 2"
        help
          Optimize even more. GCC performs nearly all supported optimizations
-         that do not involve a space-speed tradeoff. The compiler does not 
-         perform loop unrolling or function inlining when you specify -O2. 
-         As compared to -O, this option increases both compilation time and 
-         the performance of the generated code. -O2 turns on all optimization 
-         flags specified by -O. It also turns on the following optimization 
-         flags: -fthread-jumps -fcrossjumping -foptimize-sibling-calls 
-         -fcse-follow-jumps -fcse-skip-blocks -fgcse  -fgcse-lm 
-         -fexpensive-optimizations -fstrength-reduce -frerun-cse-after-loop  
-         -frerun-loop-opt -fcaller-saves -fpeephole2 -fschedule-insns  
-         -fschedule-insns2 -fsched-interblock -fsched-spec -fregmove 
-         -fstrict-aliasing -fdelete-null-pointer-checks -freorder-blocks  
-         -freorder-functions -falign-functions -falign-jumps -falign-loops  
+         that do not involve a space-speed tradeoff. The compiler does not
+         perform loop unrolling or function inlining when you specify -O2.
+         As compared to -O, this option increases both compilation time and
+         the performance of the generated code. -O2 turns on all optimization
+         flags specified by -O. It also turns on the following optimization
+         flags: -fthread-jumps -fcrossjumping -foptimize-sibling-calls
+         -fcse-follow-jumps -fcse-skip-blocks -fgcse  -fgcse-lm
+         -fexpensive-optimizations -fstrength-reduce -frerun-cse-after-loop
+         -frerun-loop-opt -fcaller-saves -fpeephole2 -fschedule-insns
+         -fschedule-insns2 -fsched-interblock -fsched-spec -fregmove
+         -fstrict-aliasing -fdelete-null-pointer-checks -freorder-blocks
+         -freorder-functions -falign-functions -falign-jumps -falign-loops
          -falign-labels -ftree-vrp -ftree-pre
          Please note the warning under -fgcse about invoking -O2 on programs
          that use computed gotos.
@@ -308,20 +308,20 @@ config BR2_OPTIMIZE_2
 config BR2_OPTIMIZE_3
        bool "optimization level 3"
        help
-         Optimize yet more. -O3 turns on all optimizations specified by -O2 
-         and also turns on the -finline-functions, -funswitch-loops and 
+         Optimize yet more. -O3 turns on all optimizations specified by -O2
+         and also turns on the -finline-functions, -funswitch-loops and
          -fgcse-after-reload options.
 
 config BR2_OPTIMIZE_S
        bool "optimize for size"
        help
-         Optimize for size. -Os enables all -O2 optimizations that do not 
+         Optimize for size. -Os enables all -O2 optimizations that do not
          typically increase code size. It also performs further optimizations
-         designed to reduce code size. -Os disables the following optimization 
-         flags: -falign-functions -falign-jumps -falign-loops -falign-labels  
+         designed to reduce code size. -Os disables the following optimization
+         flags: -falign-functions -falign-jumps -falign-loops -falign-labels
          -freorder-blocks -freorder-blocks-and-partition -fprefetch-loop-arrays
          -ftree-vect-loop-version
-     
+
 endchoice
 
 config BR2_PREFER_STATIC_LIB
index 8cadf5c3a344378ec33023833e3bc6d5239fd131..1f9e7f6fe848086c384c80ad81f4f2e10ea6900b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -260,7 +260,7 @@ TARGETS+=target-devfiles
 # target stuff is last so it can override anything else
 include target/Makefile.in
 
-TARGETS+=erase-fakeroots 
+TARGETS+=erase-fakeroots
 
 TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
 TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS) $(BASE_TARGETS))
@@ -337,10 +337,10 @@ ifeq ($(BR2_HAVE_DEVFILES),y)
        ( scripts/copy.sh $(STAGING_DIR) $(TARGET_DIR) )
 else
        rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/lib/pkgconfig
-       find $(TARGET_DIR)/usr/lib -name '*.a' -delete 
-       find $(TARGET_DIR)/lib -name '*.a' -delete 
-       find $(TARGET_DIR)/usr/lib -name '*.la' -delete 
-       find $(TARGET_DIR)/lib -name '*.la' -delete 
+       find $(TARGET_DIR)/usr/lib -name '*.a' -delete
+       find $(TARGET_DIR)/lib -name '*.a' -delete
+       find $(TARGET_DIR)/usr/lib -name '*.la' -delete
+       find $(TARGET_DIR)/lib -name '*.la' -delete
 endif
 
 source: $(TARGETS_SOURCE) $(HOST_SOURCE)
@@ -485,7 +485,7 @@ prepatch:   gcc-patched binutils-patched gdb-patched uclibc-patched
 log:   .lognr.$(PROJECT)
        @expr `cat .lognr.$(PROJECT)` + 1 > .lognr.$(PROJECT)   
        @echo Creating $(PROJECT)-`cat .lognr.$(PROJECT)`.log
-       @$(MAKE) > $(PROJECT)-`cat .lognr.$(PROJECT)`.log 2>&1 
+       @$(MAKE) > $(PROJECT)-`cat .lognr.$(PROJECT)`.log 2>&1
 
 
 cross: $(BASE_TARGETS)
index e8339682ca2bc97f7bf89e4782553f7b8895dc95..eab0a169d804f90b377b8e495cc519570fa7a95a 100644 (file)
@@ -32,7 +32,7 @@ endif
 #      bool "Common Applications"
 #      default y
 #      help
-#        A set of applications, utilities and libraries for 
+#        A set of applications, utilities and libraries for
 #        text processing, toolchain generation and other things.
 
 
index 5e94b447ed87aceb3a96b8aae630b2ed86f43cca..97f53d57d8a2f9cc8764c19c2f2cc575f4ac65d2 100644 (file)
@@ -157,7 +157,7 @@ $(BUILD_DIR)/%/.stamp_extracted:
 # if the package uses libtool, patch it for cross-compiling in buildroot
        for i in `find $(@D) -name ltmain.sh`; do \
                toolchain/patch-kernel.sh $${i%/*} package buildroot-libtool.patch; \
-       done 
+       done
        $(Q)touch $@
 
 # Patch
index d3adc36f60e2f55c426fff584b8be8a58481a8d8..03ba32f341b3042572025ee0fc2fbe51aa10b0bb 100644 (file)
@@ -15,6 +15,6 @@ ACE_OF_PENGUINS_CONF_OPT = --target=$(GNU_TARGET_NAME) \
                --host=$(GNU_TARGET_NAME) --build=$(GNU_HOST_NAME) \
                --prefix=/usr --sysconfdir=/etc
 
-ACE_OF_PENGUINS_DEPENDENCIES = uclibc libpng $(XSERVER) 
+ACE_OF_PENGUINS_DEPENDENCIES = uclibc libpng $(XSERVER)
 
 $(eval $(call AUTOTARGETS,package,ace_of_penguins))
\ No newline at end of file
index 38fc3749b937e0d7d5528eaf18d6176717c4b077..55d852c0bedc1ab9cb825a484977e288299c1b4f 100644 (file)
@@ -9,7 +9,7 @@ ATK_SITE = ftp://ftp.gtk.org/pub/gtk/v2.10/dependencies
 ATK_AUTORECONF = NO
 ATK_INSTALL_STAGING = YES
 ATK_INSTALL_TARGET = YES
-ATK_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install 
+ATK_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
 
 ATK_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes \
                glib_cv_stack_grows=no glib_cv_uscore=no \
@@ -40,7 +40,7 @@ ATK_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes \
                gl_cv_func_mkstemp_limitations=no ac_cv_func_working_mktime=yes \
                jm_cv_func_working_re_compile_pattern=yes ac_use_included_regex=no \
                gl_cv_c_restrict=no ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal \
-               ac_cv_prog_F77=no ac_cv_prog_CXX=no 
+               ac_cv_prog_F77=no ac_cv_prog_CXX=no
 
 ifneq ($(BR2_PACKAGE_XSERVER_none),y)
 ATK_CONF_OPT_X = --with-x \
@@ -60,7 +60,7 @@ ATK_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(REAL_GNU_TARGET_NAME) \
                --infodir=/usr/info --enable-shared \
                --enable-static $(ATK_CONF_OPT_X) \
                --disable-glibtest --enable-explicit-deps=no \
-               --disable-debug 
+               --disable-debug
 
 ATK_DEPENDENCIES = libglib2 pkgconfig
 
index 286c5cb9c8c9758f170572659fca2b5dc40c46f4..c61ebc8d34527886033d192380cea447113459db 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_AUTOCONF
        bool "autoconf"
        help
-         Extensible program for developing configure scripts.  These 
+         Extensible program for developing configure scripts.  These
          scripts handle all the mundane system/feature detection.
 
          http://www.gnu.org/software/autoconf/
index d57758797363e53bfd9471e22f5126645796d253..d23fbf9a9be7147e50051edade86a5c7b751a606 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_AUTOMAKE
        bool "automake"
        help
-         Tool for automatically generating Makefile's for input to 
+         Tool for automatically generating Makefile's for input to
          configure scripts (made by autoconf).
 
          http://www.gnu.org/software/automake/
index 5852a9277435e916c60268305eb10e9541c8a2b2..9568d4425f361d7558876574dd3aa86b84660c07 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_BERKELEYDB
        bool "berkeleydb"
        help
-         The Berkeley database.  A very common library for database 
+         The Berkeley database.  A very common library for database
          applications.
 
          http://www.sleepycat.com/products/db.shtml
index 7b61a554c97396958979cd46b956684c081bebf2..5662677b2e87a32514fd5d459684f7f87fcb472f 100644 (file)
@@ -8,7 +8,7 @@ config BR2_PACKAGE_BIND
 
            * a Domain Name System server (named)
            * a Domain Name System resolver library
-           * tools for verifying the proper operation of the DNS server 
+           * tools for verifying the proper operation of the DNS server
 
          The BIND DNS Server is used on the vast majority of name
          serving machines on the Internet, providing a robust and
@@ -16,6 +16,6 @@ config BR2_PACKAGE_BIND
          architecture can be built. The resolver library included in
          the BIND distribution provides the standard APIs for
          translation between domain names and Internet addresses and is
-         intended to be linked with applications requiring name service. 
+         intended to be linked with applications requiring name service.
 
          http://www.isc.org/sw/bind/
index ef3518b5c0da93817bbf348786009e20f557f277..edea4f6f9df908d26678fc32796e14f966c9fecc 100644 (file)
@@ -1,8 +1,8 @@
 config BR2_PACKAGE_BISON
        bool "bison"
        help
-         General-purpose parser generator that converts a 
-         grammar description for an LALR context-free grammar into a C 
+         General-purpose parser generator that converts a
+         grammar description for an LALR context-free grammar into a C
          program to parse that grammar.
 
          http://www.gnu.org/software/bison/
index 4ad4650051f09a174c2f53a81247f48a0ae2962b..8bb67b9a666eb902066162aa4f223f1cd4e23b80 100644 (file)
@@ -15,7 +15,7 @@ BLACKBOX_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
 BLACKBOX_CONF_OPT =    --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
                --build=$(GNU_HOST_NAME) --prefix=/usr \
                --sysconfdir=/etc --x-includes=$(STAGING_DIR)/usr/include/X11 \
-               --x-libraries=$(STAGING_DIR)/usr/lib 
+               --x-libraries=$(STAGING_DIR)/usr/lib
 
 
 BLACKBOX_DEPENDENCIES = uclibc $(XSERVER)
index e0470df1b5e1405364743430753bec5a57ce1eaa..48943ff046b6a8967cc99cfcf01910b5cebad2e5 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_BOA
        bool "boa"
        help
-         A very small and very fast http daemon.  Not intended as 
+         A very small and very fast http daemon.  Not intended as
          a feature-packed server.
 
          http://www.boa.org/
index ce98b02fa95547832ac3b5908d8d62e4953c5a0b..c5254de84a38090d8089dfe3a5f511caa2ac91f9 100644 (file)
@@ -1,9 +1,9 @@
 config BR2_PACKAGE_BOOTUTILS
        bool "bootutils"
        help
-         BootUtils is a collection of utilities to facilitate booting of 
-         Linux 2.6-based systems. The process of finding the root volume 
-         either by label or explicit label= on the kernel command line, 
+         BootUtils is a collection of utilities to facilitate booting of
+         Linux 2.6-based systems. The process of finding the root volume
+         either by label or explicit label= on the kernel command line,
          mounting it, and 'switchroot'ing is automated.
 
          http://bootutils.pr.linuxrulz.org/
index 1b17b0ed14da004639da7dce6ecc96127b1a7f4d..e8e03cf08e6c5569f62a2afb85f46a777932f0ad 100644 (file)
@@ -1,9 +1,9 @@
 config BR2_PACKAGE_BZIP2
        bool "bzip2"
        help
-         Freely available, patent free, high-quality data compressor.  
-         It typically compresses files to within 10% to 15% of the best 
-         available techniques, while being around twice as fast at 
+         Freely available, patent free, high-quality data compressor.
+         It typically compresses files to within 10% to 15% of the best
+         available techniques, while being around twice as fast at
          compression and six times faster at decompression.
 
          http://sources.redhat.com/bzip2/
index c712567cc289b6bca92f9509b5bf9c3a6908cfc4..e9fd5c82088e09d1138fdade15cde3fa62cf3024 100644 (file)
@@ -9,7 +9,7 @@ CAIRO_SITE = http://cairographics.org/releases
 CAIRO_AUTORECONF = NO
 CAIRO_INSTALL_STAGING = YES
 CAIRO_INSTALL_TARGET = YES
-CAIRO_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install 
+CAIRO_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
 
 CAIRO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
                glib_cv_uscore=no ac_cv_func_strtod=yes \
@@ -39,13 +39,13 @@ CAIRO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
                gl_cv_func_mkdir_trailing_slash_bug=no gl_cv_func_mkstemp_limitations=no \
                ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
                ac_use_included_regex=no gl_cv_c_restrict=no \
-               ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal 
+               ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal
 
 ifeq ($(BR2_PACKAGE_DIRECTFB),y)
        CAIRO_CONF_OPT = --disable-xlib --without-x --enable-directfb
        CAIRO_DEPENDENCIES_EXTRA = directfb
 endif
 
-CAIRO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 zlib png fontconfig $(CAIRO_DEPENDENCIES_EXTRA) $(XSERVER) 
+CAIRO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 zlib png fontconfig $(CAIRO_DEPENDENCIES_EXTRA) $(XSERVER)
 
 $(eval $(call AUTOTARGETS,package,cairo))
index be684850274dfc7ab50f1b5b265b19a010e7e098..2d0bf6d7d7f77538b651a69d57d44fc6a98b8ddf 100644 (file)
@@ -3,8 +3,8 @@ config BR2_PACKAGE_COREUTILS
        depends on BR2_USE_WCHAR
        select BR2_UCLIBC_PROGRAM_INVOCATION
        help
-         All of the basic file/text/shell utilities.  These are the 
-         core utilities which are expected to exist on every system.  
+         All of the basic file/text/shell utilities.  These are the
+         core utilities which are expected to exist on every system.
          Busybox implements many of the most common.
 
          Things like:
index c5b99b88b9cd857d7914d429fd1f187416d130f2..0b518c6ac33a7d14b21fc8be22e11bc69bea582e 100644 (file)
@@ -1,8 +1,8 @@
 config BR2_PACKAGE_DISTCC
        bool "distcc"
        help
-         Distributed compiler client and server.  Allows you to 
-         distribute compilation of C code across several machines 
+         Distributed compiler client and server.  Allows you to
+         distribute compilation of C code across several machines
          on a network.
 
          http://distcc.samba.org/
index 9dd90d6aa6000083f906da6d562082cdc44cc9bb..a6c75023de057e94ac209727728aa183e31ed47d 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_DNSMASQ
        bool "dnsmasq"
        help
-         A lightweight DNS and DHCP server.  It is intended to provide 
+         A lightweight DNS and DHCP server.  It is intended to provide
          coupled DNS and DHCP service to a LAN.
 
          http://www.thekelleys.org.uk/dnsmasq/
index e7b3a75e6ae103e643f758be4dc1d6469b182248..f8f6360e31d76b65615ec0d7b3edbbe7658b5590 100644 (file)
@@ -21,7 +21,7 @@ DOCKER_MAKE_OPT = CC=$(TARGET_CC) CXX=$(TARGET_CXX) LD=$(TARGET_LD) \
 
 DOCKER_INSTALL_TARGET_OPT = PREFIX=$(TARGET_DIR)/usr install
 
-DOCKER_DEPENDENCIES = uclibc 
+DOCKER_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package,docker))
 
index 230d759eadd96608aaac8e2e9c8209ff3828ddcd..63dc21e7c74d4f4e12877b38fc592f16c0972ccc 100644 (file)
@@ -1,8 +1,8 @@
 config BR2_PACKAGE_ED
        bool "ed"
        help
-         A line-oriented text editor.  Used to create, display, modify, 
-         and otherwise manipulate text files.  Often used in scripts 
+         A line-oriented text editor.  Used to create, display, modify,
+         and otherwise manipulate text files.  Often used in scripts
          rather than invoked directly.
 
          http://www.gnu.org/software/ed/
index 0a84ec886de93902e5fbf83def113cc836cdb946..e9027578fc69dd1c6514b41412ea42861511aee5 100644 (file)
@@ -2,7 +2,7 @@ config BR2_PACKAGE_NANO
        bool "nano"
        select BR2_PACKAGE_NCURSES
        help
-         A nice ncurses-based editor.  Started out as a clone of pico.  
+         A nice ncurses-based editor.  Started out as a clone of pico.
          Great editor for new users.
 
          http://www.nano-editor.org/
index e1376b6509d69f781d85a8e1704dfc85244c474b..3f2ba090f4ecda903dd232ed0fea76e6296dbd57 100644 (file)
@@ -11,7 +11,7 @@ SPEECH_TOOLS_INSTALL_STAGING = NO
 SPEECH_TOOLS_INSTALL_TARGET = YES
 SPEECH_TOOLS_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) STRIP=$(TARGET_STRIP) install
 
-SPEECH_TOOLS_CONF_OPT = 
+SPEECH_TOOLS_CONF_OPT =
 SPEECH_TOOLS_MAKE_OPT = CC=$(TARGET_CC) CXX=$(TARGET_CXX)
 
 SPEECH_TOOLS_DEPENDENCIES = uclibc ncurses
index 342f7dc552633970ea4f044e99e7b19e62691a39..2c0bc39fbf6550cb82460047060cc5ae2451e244 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_FILE
        bool "file"
        help
-         Program to identify a file's format by scanning binary data 
+         Program to identify a file's format by scanning binary data
          for known patterns.
 
          ftp://ftp.astron.com/pub/file/
index baaa72540b3e058e8c453afa52fcb1534fc5ff4a..25a13c60885427f35bd4bddf8d2cffe2b7474388 100644 (file)
@@ -2,7 +2,7 @@ config BR2_PACKAGE_FINDUTILS
        bool "findutils"
        depends on BR2_USE_WCHAR
        help
-         Basic directory searching utilities.  Provides the 
+         Basic directory searching utilities.  Provides the
          common 'find', 'xargs', 'locate', and 'updatedb' binaries.
 
          http://www.gnu.org/software/findutils/findutils.html
index 2caec46c7e7dbec4be7f0dda9cb49beb5bf40e26..b10eb00377a273ffd7932b195868a6d0ceb2f89d 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_FLEX
        bool "flex"
        help
-         A fast lexical analyser generator.  A tool for generating 
+         A fast lexical analyser generator.  A tool for generating
          programs that perform pattern-matching on text.
 
          http://www.gnu.org/software/flex/
index eb22a9e619339a9ee93b5c0af40a6c237ca0c80b..f4a04986e53d2ca2d7b6362ee5931a905afffe1d 100644 (file)
@@ -18,6 +18,6 @@ FLTK_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
                --build=$(GNU_HOST_NAME) --prefix=/usr \
                --sysconfdir=/etc --enable-shared --enable-threads --with-x
 
-FLTK_DEPENDENCIES = uclibc $(XSERVER) 
+FLTK_DEPENDENCIES = uclibc $(XSERVER)
 
 $(eval $(call AUTOTARGETS,package,fltk))
\ No newline at end of file
index 14d23710f40a79e3085599f387450d3673b082f3..62ca860e6e6ff8df3042554e0a0d2228de1dd1cd 100644 (file)
@@ -2,8 +2,8 @@ config BR2_PACKAGE_GAWK
        bool "gawk"
        depends on BR2_USE_WCHAR
        help
-         A special-purpose programming language which is data driven 
-         rather than procedural.  Allows for simple data-reformatting jobs 
+         A special-purpose programming language which is data driven
+         rather than procedural.  Allows for simple data-reformatting jobs
          with just a few lines of code.
 
          http://www.gnu.org/software/gawk/
index 236ba73a634f6f0385370c1aab8c125b72aa278a..f8f18e0a307cb1432a6bfa97318c7ecd3f8978e1 100644 (file)
@@ -12,7 +12,7 @@ GNUCHESS_INSTALL_TARGET = YES
 
 GNUCHESS_CONF_ENV = ac_cv_func_realloc_0_nonnull=yes ac_cv_func_malloc_0_nonnull=yes
 
-GNUCHESS_DEPENDENCIES = uclibc 
+GNUCHESS_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package,gnuchess))
 
index 5574f08e2dac5e7e196fc8541598c52af99ac6a1..dc9d50b9a07eb3892d70fb323504b6c73332cdc1 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_GZIP
        bool "gzip"
        help
-         Standard GNU compressor.  Provides things like gzip, 
+         Standard GNU compressor.  Provides things like gzip,
          gunzip, gzcat, etc...
 
          http://www.gnu.org/software/gzip/gzip.html
index 06319e44cd239468dcda47a60d90142d53df7055..74431b787c2e7bc55171bb7a50f1df9b01e67685 100644 (file)
@@ -3,7 +3,7 @@ config BR2_PACKAGE_HOSTAP
        depends on BR2_DEPRECATED
        select BR2_PACKAGE_PCMCIA
        help
-         Linux driver for wireless LAN cards based on Intersil's 
+         Linux driver for wireless LAN cards based on Intersil's
          Prism2/2.5/3 chipset.
 
          http://hostap.epitest.fi/
index a1e3bab23f00690a89ad1689ab49a178d6a8e5f1..7f930573245faea74901850cf8dead7165047db6 100644 (file)
@@ -51,7 +51,7 @@ $(ICU_HOST_DIR)/.done: $(ICU_DIR)/.configured
        touch $(ICU_HOST_DIR)/.done
 
 $(ICU_DIR)/.done: $(ICU_HOST_DIR)/.done
-       $(MAKE) -C $(ICU_DIR) 
+       $(MAKE) -C $(ICU_DIR)
        $(MAKE) -C $(ICU_DIR) install DESTDIR=$(STAGING_DIR)
        $(MAKE) -C $(ICU_DIR) install DESTDIR=$(TARGET_DIR)
        $(SED) "s,^default_prefix=.*,default_prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/icu-config
index da5fe9051ddd21dd648c365a018a95d4b4c8e8cb..2eb79bf8dd9214df5cbaabe8b12e4aeb70983acc 100644 (file)
@@ -12,8 +12,8 @@ IPKG_INSTALL_STAGING = YES
 IPKG_INSTALL_TARGET = YES
 
 IPKG_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
-               --build=$(GNU_HOST_NAME) --prefix=/usr --sysconfdir=/etc 
+               --build=$(GNU_HOST_NAME) --prefix=/usr --sysconfdir=/etc
 
-IPKG_DEPENDENCIES = uclibc 
+IPKG_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package,ipkg))
\ No newline at end of file
index 6c82a84292e08486149a360e0469c0f8b01eb50d..52bf7923cd84706dc6bbcd80c2bb283716ba1076 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_IPROUTE2
        bool "iproute2"
        help
-         Kernel routing and traffic control utilities.  Provides things 
+         Kernel routing and traffic control utilities.  Provides things
          like ip and tc.
 
          http://developer.osdl.org/dev/iproute2/
index 45cdeb56e4b37a365ce8244532d94fc984093b13..f4e227f557b148424f562521412402bde06e7267 100644 (file)
@@ -19,13 +19,13 @@ config BR2_PACKAGE_IPSEC_TOOLS_NATT
        depends on BR2_PACKAGE_IPSEC_TOOLS
        bool "Enable NAT-Traversal"
        help
-               This needs kernel support, which is available on Linux. On 
-               NetBSD, NAT-Traversal kernel support has not been integrated 
-               yet, you can get it from here: 
+               This needs kernel support, which is available on Linux. On
+               NetBSD, NAT-Traversal kernel support has not been integrated
+               yet, you can get it from here:
 
-               http://ipsec-tools.sourceforge.net/netbsd_nat-t.diff If you 
+               http://ipsec-tools.sourceforge.net/netbsd_nat-t.diff If you
 
-               live in a country where software patents are legal, using 
+               live in a country where software patents are legal, using
                NAT-Traversal might infringe a patent.
 
 
index 422bfc1e833ccb972ebbe6ab9350dd0c616f430c..0547badf73fc1195accae71c74ddb94a6ee1dd8e 100644 (file)
@@ -37,7 +37,7 @@ config IRDA_TEKRAM
 config IRDA_SMCINIT
        bool "support toshiba-laptops"
        help
-               Some Toshiba Laptops have buggy BIOSes which didn't initialize 
+               Some Toshiba Laptops have buggy BIOSes which didn't initialize
                Irda. This may help those.
        
 endif
index 0e0eaa3da60d8e53770116afb6b03578dc377669..ace57ddf9104abc48bc1bb60568df9e55c9a50a7 100644 (file)
@@ -9,7 +9,7 @@ CLASSPATH_SITE = $(BR2_GNU_MIRROR)/classpath
 CLASSPATH_AUTORECONF = NO
 CLASSPATH_INSTALL_STAGING = YES
 CLASSPATH_INSTALL_TARGET = YES
-CLASSPATH_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install 
+CLASSPATH_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
 CLASSPATH_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
 CLASSPATH_DIR_PREFIX = package/java
 
@@ -42,7 +42,7 @@ CLASSPATH_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
                ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
                ac_use_included_regex=no gl_cv_c_restrict=no \
                ac_cv_path_GLIB_GENMARSHAL=/usr/bin/glib-genmarshal \
-               ac_cv_prog_F77=no ac_cv_prog_CXX=no ac_cv_path_CUPS_CONFIG=no 
+               ac_cv_prog_F77=no ac_cv_prog_CXX=no ac_cv_path_CUPS_CONFIG=no
 
 
 CLASSPATH_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
@@ -63,21 +63,21 @@ CLASSPATH_DEPENDENCIES = uclibc pkgconfig png jpeg tiff
 ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
        CLASSPATH_DEPENDENCIES+= alsa-lib
        CLASSPATH_CONF_OPT+= --enable-alsa
-else 
+else
        CLASSPATH_CONF_OPT+= --disable-alsa
 endif
 
 ifeq ($(BR2_PACKAGE_QTOPIA4),y)
        CLASSPATH_DEPENDENCIES+= qtopia4
        CLASSPATH_CONF_OPT+= --enable-qt-peer
-else 
+else
        CLASSPATH_CONF_OPT+= --disable-qt-peer
 endif
 
 ifeq ($(BR2_PACKAGE_LIBGTK2),y)
        CLASSPATH_DEPENDENCIES+= libgtk2
        CLASSPATH_CONF_OPT+= --enable-gtk-peer
-else 
+else
        CLASSPATH_CONF_OPT+= --disable-gtk-peer
 endif
 
@@ -87,7 +87,7 @@ ifneq ($(BR2_PACKAGE_XSERVER_none),y)
                --x-includes=$(STAGING_DIR)/usr/include/X11 \
                --x-libraries=$(STAGING_DIR)/usr/lib
 else
-       CLASSPATH_CONF_OPT+= --without-x 
+       CLASSPATH_CONF_OPT+= --without-x
 endif
 
 
index 68ca4165dc0f6ce55e691c6db4e3c7c1362ba3a4..e080b20318e7bda8d3cb850099bcd584590fe24f 100644 (file)
@@ -23,7 +23,7 @@ $(TARGET_DIR)/usr/lib/concierge/: $(DL_DIR)/concierge
        cp -dpf package/concierge/files/init.xargs $(TARGET_DIR)/usr/lib/concierge/
        touch -c $@
 
-$(TARGET_DIR)/usr/bin/concierge: 
+$(TARGET_DIR)/usr/bin/concierge:
        cp -dpf package/concierge/files/concierge $(TARGET_DIR)/usr/bin/
        chmod +x $(TARGET_DIR)/usr/bin/concierge
        touch -c $@
index 660b8f84ec1e01b8ccc7997a5237e759e1a270b9..6e166dc42242154cd51eb23aef36da4b53ea3e22 100644 (file)
@@ -3,7 +3,7 @@ config BR2_PACKAGE_JAMVM
         depends on BR2_PACKAGE_CLASSPATH
        select BR2_PACKAGE_PKGCONFIG
        help
-         JamVM is a new Java Virtual Machine which conforms to 
-         the JVM specification version 2 (blue book). 
+         JamVM is a new Java Virtual Machine which conforms to
+         the JVM specification version 2 (blue book).
 
          http://jamvm.sourceforge.net/
index 951d091d8b97f8ec2ee6bc84b9312a640c714ed3..c79c31d89a014607127b56c94da2466e95d54ca6 100644 (file)
@@ -41,7 +41,7 @@ JAMVM_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
                ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
                ac_use_included_regex=no gl_cv_c_restrict=no \
                ac_cv_path_GLIB_GENMARSHAL=/usr/bin/glib-genmarshal \
-               ac_cv_prog_F77=no ac_cv_prog_CXX=no ac_cv_path_CUPS_CONFIG=no 
+               ac_cv_prog_F77=no ac_cv_prog_CXX=no ac_cv_path_CUPS_CONFIG=no
 
 JAMVM_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
                --build=$(GNU_HOST_NAME) --prefix=/usr \
index c8852d7daf90e151b47da87312b3a724189c8641..1b22ff4913eb6673cb40285cfc6b11644fd87efd 100644 (file)
@@ -1,6 +1,6 @@
 config BR2_PACKAGE_KISMET
        bool "kismet"
-       select BR2_PACKAGE_NCURSES 
+       select BR2_PACKAGE_NCURSES
        select BR2_PACKAGE_LIBPCAP
        select BR2_PACKAGE_DBUS
        select BR2_PACKAGE_DBUS_GLIB
@@ -13,5 +13,5 @@ config BR2_PACKAGE_KISMET
                
                Kismet identifies networks by passively collecting packets and detecting standard named
                networks, detecting (and given time, decloaking) hidden networks, and infering the presence
-               of nonbeaconing networks via data traffic. 
+               of nonbeaconing networks via data traffic.
 
index 47d4cbb2a6c2232fff17912c28adce4adb940de3..491ae2e307b68e2b9cff22e8e31337bdf028f15e 100644 (file)
@@ -1,11 +1,11 @@
 config BR2_PACKAGE_LIBCGI
        bool "libcgi"
        help
-               LibCGI is a library written from scratch to easily make 
+               LibCGI is a library written from scratch to easily make
                CGI applications in C.
 
-               There are a lot of functions like string manipulation, 
-               session and cookie support, GET and POST methods manipulation 
+               There are a lot of functions like string manipulation,
+               session and cookie support, GET and POST methods manipulation
                etc..., to help you to quickly write powerful CGI programs.
 
                http://libcgi.sourceforge.net/
index 3e838ad8489c49f4fb9958eb043cd20099ba59fe..2c5c049fa3ae33322b34224e56f2453ce26b118a 100644 (file)
@@ -2,7 +2,7 @@ config BR2_PACKAGE_LIBDAEMON
        bool "libdaemon"
        select BR2_PACKAGE_PKGCONFIG
        help
-         libdaemon is a lightweight C library that eases the 
+         libdaemon is a lightweight C library that eases the
          writing of UNIX daemons.
 
          http://0pointer.de/lennart/projects/libdaemon/
index 73a2e683c7c2ba324b7b711247ce19cca3ca08ca..67620914c38bfabe1f428bc9727def79e020b85d 100644 (file)
@@ -4,7 +4,7 @@ config BR2_PACKAGE_LIBEXOSIP2
          GNU Higher level SIP (Session Initiation Protocol)
          This library aims to provide multimedia and telecom software
          developers an easy and powerful interface to initiate and
-         control SIP based sessions in their applications. 
+         control SIP based sessions in their applications.
          SIP is a open standard replacement from IETF for H323.
 
          http://www.gnu.org/software/osip/
index 94c799b69af326d23adffea628105a6ba31ec350..73f048b710cb33510dea5b43ae243f9ae56dd9ab 100644 (file)
@@ -56,7 +56,7 @@ $(LIBEXOSIP2_DIR)/.compiled: $(LIBEXOSIP2_DIR)/.configured
        $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(LIBEXOSIP2_DIR)
        touch $@
 
-#LDFLAGS=$(TARGET_LDFLAGS) 
+#LDFLAGS=$(TARGET_LDFLAGS)
 
 $(STAGING_DIR)/usr/lib/libeXosip2.so: $(LIBEXOSIP2_DIR)/.compiled
        cp -dpf $(LIBEXOSIP2_DIR)/src/.libs/libeXosip2.so* $(STAGING_DIR)/usr/lib
index e26f5352643501fc03e4d90c687647977de6aff9..25acd15d6bd1c2dedc646cbad1c12c77e885ddc0 100644 (file)
@@ -2,6 +2,6 @@ config BR2_PACKAGE_LIBFLOAT
        bool "libfloat"
        help
         Soft floating point library.
-        
+       
         http://netwinder.osuosl.org/devteam/scottb/libfloat/
 
index f15f34c8b8404cabdc8bcc056c641adeb3e31283..55d2f170cd3631685345fa0952d0c98add21227b 100644 (file)
@@ -2,6 +2,6 @@ config BR2_PACKAGE_LIBGCRYPT
        bool "libgcrypt"
        select BR2_PACKAGE_LIBGPG_ERROR
        help
-         LibGCrypt is GNU's basic cryptographic library. 
+         LibGCrypt is GNU's basic cryptographic library.
 
          ftp://gd.tuwien.ac.at/privacy/gnupg/libgcrypt/
index e91a2bd0f34a4b122aa590f963ca7efa022dc5e7..48a9aabae523b2020e2373bb8d13b4b023f6103a 100644 (file)
@@ -9,7 +9,7 @@ LIBGLIB2_SITE = http://ftp.gtk.org/pub/glib/2.15
 LIBGLIB2_AUTORECONF = NO
 LIBGLIB2_INSTALL_STAGING = YES
 LIBGLIB2_INSTALL_TARGET = YES
-LIBGLIB2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install 
+LIBGLIB2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
 
 LIBGLIB2_CONF_ENV =    $(TARGET_CONFIGURE_OPTS) $(TARGET_CONFIGURE_ARGS) \
                ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
@@ -41,7 +41,7 @@ LIBGLIB2_CONF_ENV =   $(TARGET_CONFIGURE_OPTS) $(TARGET_CONFIGURE_ARGS) \
                ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
                ac_use_included_regex=no gl_cv_c_restrict=no \
                ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal ac_cv_prog_F77=no \
-               ac_cv_prog_CXX=no ac_cv_func_posix_getgrgid_r=no 
+               ac_cv_prog_CXX=no ac_cv_func_posix_getgrgid_r=no
 
 LIBGLIB2_CONF_OPT =    --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
                --build=$(GNU_HOST_NAME) --prefix=/usr \
@@ -51,8 +51,8 @@ LIBGLIB2_CONF_OPT =   --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
                --datadir=/usr/share --localstatedir=/var \
                --includedir=/usr/include --mandir=/usr/man \
                --infodir=/usr/info --enable-shared \
-               --enable-static $(DISABLE_NLS) 
+               --enable-static $(DISABLE_NLS)
 
-LIBGLIB2_DEPENDENCIES = uclibc gettext libintl pkgconfig 
+LIBGLIB2_DEPENDENCIES = uclibc gettext libintl pkgconfig
 
 $(eval $(call AUTOTARGETS,package,libglib2))
index dacf49205ba253425ca3eb7303044339a8c57c16..111a9df10d5290df86e6e146e4657dac1fdd3c53 100644 (file)
@@ -9,8 +9,8 @@ LIBGTK2_SITE = ftp://ftp.gtk.org/pub/gtk/2.12
 LIBGTK2_AUTORECONF = NO
 LIBGTK2_INSTALL_STAGING = YES
 LIBGTK2_INSTALL_TARGET = YES
-LIBGTK2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install 
-LIBGTK2_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install 
+LIBGTK2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
+LIBGTK2_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
 
 LIBGTK2_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
                glib_cv_uscore=no \
@@ -71,7 +71,7 @@ LIBGTK2_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
                ac_cv_path_GDK_PIXBUF_CSOURCE=$(HOST_GLIB)/bin/gdk-pixbuf-csource \
                ac_cv_prog_F77=no \
                ac_cv_prog_CXX=no \
-               ac_cv_path_CUPS_CONFIG=no 
+               ac_cv_path_CUPS_CONFIG=no
 
 LIBGTK2_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
                --build=$(GNU_HOST_NAME) \
@@ -109,7 +109,7 @@ ifneq ($(BR2_PACKAGE_XSERVER_none),y)
                --x-includes=$(STAGING_DIR)/usr/include/X11 \
                --x-libraries=$(STAGING_DIR)/usr/lib \
                --with-gdktarget=x11
-       LIBGTK2_DEPENDENCIES_EXTRA = xlib_libXcomposite $(XSERVER) 
+       LIBGTK2_DEPENDENCIES_EXTRA = xlib_libXcomposite $(XSERVER)
 else
        LIBGTK2_CONF_OPT += --without-x
 endif
index 28cd57ccb27b3ac5f0b23971941b12ba47a7da6f..d3b47101ae180d97d1d608970d055647fb048c1c 100644 (file)
@@ -12,7 +12,7 @@ LIBICONV_INSTALL_TARGET = YES
 
 LIBICONV_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
 
-LIBICONV_DEPENDENCIES = uclibc 
+LIBICONV_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package,libiconv))
 
index a9242c0a6c23c1ad596d370367c046e18997edc3..1b248a0c9227cd468869d8a042bb8b5c2980a826 100644 (file)
@@ -4,6 +4,6 @@ config BR2_PACKAGE_LIBOSIP2
          GNU SIP (Session Initiation Protocol)
          This library aims to provide multimedia and telecom software
          developers an easy and powerful interface to initiate and
-         control SIP based sessions in their applications. 
+         control SIP based sessions in their applications.
          SIP is a open standard replacement from IETF for H323.
 
index 8f10de3bbb63133c19e3f9a9eb033139bee52d7c..ccc4dad6f72af7b7261d90e0d1c1f4bc0269f9f5 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_LIBSNDFILE
        bool "libsndfile"
        help
-           Libsndfile is a C library for reading and writing files containing 
-           sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) 
+           Libsndfile is a C library for reading and writing files containing
+           sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format)
            through one standard library interface.
 
index 21ec8858bdc307e5906bf19afc2efb2f97d880a2..d3cf2d784316cdba18f27e4cc540405dc4195b2e 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_LIBTOOL
        bool "libtool"
        help
-         Library that hides the complexity of using shared/static libraries 
+         Library that hides the complexity of using shared/static libraries
          on different platforms behind a consistent, portable interface.
 
          http://www.gnu.org/software/libtool/
index f35c1f3b47972c52c0a6d0b10478480bc1621107..eb3b841e6a88bf463e99e5d3b5b08ad6951e204e 100644 (file)
@@ -8,7 +8,7 @@ config BR2_PACKAGE_LIGHTTPD
          Auth, Output-Compression, URL-Rewriting and many more) make
          lighttpd the perfect webserver-software for every server that
          is suffering load problems.
-                
+               
          http://www.lighttpd.net/
 
 if BR2_PACKAGE_LIGHTTPD
index 131e87e720158479e120aee1ae82d50b83c00662..67e486d154abee0b95d1b016a107ddea360037d6 100644 (file)
@@ -9,7 +9,7 @@ LIGHTTPD_SITE:=http://www.lighttpd.net/download
 LIGHTTPD_INSTALL_STAGING = NO
 LIGHTTPD_INSTALL_TARGET = YES
 LIGHTTPD_DEPENDENCIES = uclibc
-LIGHTTPD_CONF_ENV = 
+LIGHTTPD_CONF_ENV =
 LIGHTTPD_CONF_OPT = \
        --target=$(GNU_TARGET_NAME) \
        --host=$(GNU_TARGET_NAME) \
index ae798a2f1d16511613ece24d924c27cb570739b5..cc7512c25829a68dd0ac007283b93f9379f8009d 100644 (file)
@@ -2,7 +2,7 @@ config BR2_PACKAGE_LSOF
        bool "lsof"
        help
          lsof (LiSt Open Files)
-         The lsof tool lists information about files opened by 
+         The lsof tool lists information about files opened by
          processes.
 
          ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
index 41b8ed8a103e2fab8b172018ce37b016d7ab3625..0f7d79911669ca1e5b5d85e2b8164e36b3268e98 100644 (file)
@@ -15,7 +15,7 @@ $(DL_DIR)/$(LXDOOM_WAD_SOURCE):
 $(LXDOOM_WAD_DIR)/.unpacked: $(DL_DIR)/$(LXDOOM_WAD_SOURCE)
        mkdir -p $(LXDOOM_WAD_DIR)
        cp -f $(DL_DIR)/$(LXDOOM_WAD_SOURCE) $(LXDOOM_WAD_DIR)
-       gunzip -d $(LXDOOM_WAD_DIR)/$(LXDOOM_WAD_SOURCE) 
+       gunzip -d $(LXDOOM_WAD_DIR)/$(LXDOOM_WAD_SOURCE)
        touch $@
 
 $(LXDOOM_WAD_DIR)/.installed: $(LXDOOM_WAD_DIR)/.unpacked
index b79fa662529c672b2bac4e6dcbd8b7dc05ae5f61..bc688eb782d0c59721eeb2bec8437069fa7fab77 100644 (file)
@@ -17,6 +17,6 @@ LXDOOM_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
                --includedir=/usr/include --enable-shared \
                $(DISABLE_NLS)
 
-LXDOOM_DEPENDENCIES = uclibc  
+LXDOOM_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package,lxdoom))
\ No newline at end of file
index a5733a006cd7d68751b0cf5f58ead4b6f3ae0e5e..b6f11f814e9fdcf1f75d92350dd97c246306a0c7 100644 (file)
@@ -11,7 +11,7 @@ MAGICCUBE4D_INSTALL_STAGING = NO
 MAGICCUBE4D_INSTALL_TARGET = YES
 MAGICCUBE4D_INSTALL_TARGET_OPT = GAMESDIR=$(TARGET_DIR)/usr/games install
 
-MAGICCUBE4D_DEPENDENCIES = uclibc 
+MAGICCUBE4D_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package,magiccube4d))
 
index b95c8fe6a1229db13e2d8318c3192b5b394953fa..7dc19c52e8a3cb771b845d769af78287b1635867 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_MAKE
        bool "make"
        help
-         A tool which controls the generation of executables and other 
+         A tool which controls the generation of executables and other
          non-source files of a program from the program's source files.
 
          http://www.gnu.org/software/make/
index aa27efb24e971ee5f7f584a90727ee7cd723a7f9..82f964c74c0dc47face033935df60fc02d084623 100644 (file)
@@ -10,5 +10,5 @@ config BR2_PACKAGE_MICROPERL_MODULES
        help
          List of microperl modules to copy to the rootfs.
          E.g.
-         warnings.pm warnings/register.pm strict.pm constant.pm vars.pm 
+         warnings.pm warnings/register.pm strict.pm constant.pm vars.pm
          Exporter.pm Exporter/Heavy.pm Carp.pm Getopt/Long.pm
index e0d211b04a2b463ea6de75176400abc80b1be31d..5445f6af3a086409dc7429919933c68e0a33fdea 100644 (file)
@@ -3,5 +3,5 @@ config BR2_PACKAGE_MICROWIN
        help
         Microwindows Graphical User Interface for small and
         embedded enviroments.
-        
+       
         http://microwindows.censoft.com/
index bf9902d10c8403c7044dc8f3d166dbcc9921b36e..77e3bce51997b10ca3ca19062be13d9f60c15318 100644 (file)
@@ -1,9 +1,9 @@
 config BR2_PACKAGE_MODULE_INIT_TOOLS
        bool "module-init-tools"
        help
-         The module-init-tools package contains a set of programs for 
-         loading, inserting, and removing kernel modules for Linux 
-         (versions 2.5.48 and above). It serves the same function that 
+         The module-init-tools package contains a set of programs for
+         loading, inserting, and removing kernel modules for Linux
+         (versions 2.5.48 and above). It serves the same function that
          the "modutils" package serves for Linux 2.4.
 
          http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/
index b166ac19e0720f7089b5623db60727f63f0faf6f..2834e79cd7eec10d927ffc2ebe7fb838d06aeb3f 100644 (file)
@@ -2,9 +2,9 @@ config BR2_PACKAGE_MODUTILS
        bool "modutils"
        depends on !BR2_PACKAGE_MODULE_INIT_TOOLS
        help
-         The modutils packages includes the kerneld program for automatic 
-         loading and unloading of modules, as well as other module 
-         management programs. Examples of loaded and unloaded modules are 
+         The modutils packages includes the kerneld program for automatic
+         loading and unloading of modules, as well as other module
+         management programs. Examples of loaded and unloaded modules are
          device drivers and filesystems, as well as some other things.
 
          linux v.<2.6
index dc8720f0b9f49ce141053a360bc795344d0b50f4..bfbd139734c39a24ef8c2c091c673a01c19241a4 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_NCURSES
        bool "ncurses"
        help
-         The Ncurses (new curses) library is a free software emulation of 
+         The Ncurses (new curses) library is a free software emulation of
          curses in System V Release 4.0, and more.
 
          http://www.gnu.org/software/ncurses/
@@ -11,13 +11,13 @@ config BR2_PACKAGE_NCURSES_TARGET_PANEL
        depends on BR2_PACKAGE_NCURSES
        help
          Includes ncurses dynamic libpanel in target
+
 config BR2_PACKAGE_NCURSES_TARGET_FORM
        bool "ncurses libform in target"
        depends on BR2_PACKAGE_NCURSES
        help
          Includes ncurses dynamic libform in target
+
 config BR2_PACKAGE_NCURSES_TARGET_MENU
        bool "ncurses libmenu in target"
        depends on BR2_PACKAGE_NCURSES
index 5dc5748d5c2e5c5d785ff54826f886c236a6d5a2..c0b775b4850ce14c314fbe56cc43571f1137667e 100644 (file)
@@ -25,7 +25,7 @@ config BR2_PACKAGE_NEON_LIBXML2
        bool "libxml2"
        depends on BR2_PACKAGE_LIBXML2
        help
-         libxml2    use libxml2, a library to read, modify and 
+         libxml2    use libxml2, a library to read, modify and
                     write XML and HTML files.
 
 config BR2_PACKAGE_NEON_NOXML
index 9616310dec6b771573c557f0739914311fb14f4f..54aac767ca6df39602c42632d302fae6f1e8ab50 100644 (file)
@@ -4,9 +4,9 @@ config BR2_PACKAGE_NETCAT
          Netcat is a featured networking utility which reads and writes data
          across network connections, using the TCP/IP protocol.
          It is designed to be a reliable "back-end" tool that can be used
-         directly or easily driven by other programs and scripts. At the 
-         same time, it is a feature-rich network debugging and exploration 
-         tool, since it can create almost any kind of connection you would 
+         directly or easily driven by other programs and scripts. At the
+         same time, it is a feature-rich network debugging and exploration
+         tool, since it can create almost any kind of connection you would
          need and has several interesting built-in capabilities.
 
          http://netcat.sourceforge.net/download.php
index cd68049be5aa321a6fb348cd74da71328de96eb3..61b460ad61813c34b68e153dbe907ef19cb7cd64 100644 (file)
@@ -2,7 +2,7 @@ config BR2_PACKAGE_NETSNMP
        bool "netsnmp"
        select BR2_PACKAGE_OPENSSL
        help
-         Suite of applications used to implement SNMP v1, SNMP v2c, and 
+         Suite of applications used to implement SNMP v1, SNMP v2c, and
          SNMP v3 using both IPv4 and IPv6.
 
          http://net-snmp.sourceforge.net/
index 61b3b3bfc036d79f2c6b93fb19d32610bb184755..61b6940db2ca59b9a0cefaee306eedbbac60cd8c 100644 (file)
@@ -13,7 +13,7 @@ NG_SPICE_REWORK_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
 
 NG_SPICE_REWORK_CONF_OPT = CFLAGS="-I$(STAGING_DIR)/usr/include"
 
-NG-SPICE-REWORK_DEPENDENCIES = uclibc 
+NG-SPICE-REWORK_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package,ng-spice-rework))
 
index f8f9a8d19391a6e942e8a8ab9c7e5f30061f60b9..bd10b6249eebaf04ad2b3c85721f7c59201eff5f 100644 (file)
@@ -42,14 +42,14 @@ $(NTFS-3G_DIR)/.configured: $(NTFS-3G_DIR)/.source
                ac_cv_path_LDCONFIG=""\
        );
        touch $@
+
 $(NTFS-3G_DIR)/.compiled: $(NTFS-3G_DIR)/.configured
        $(MAKE) prefix=$/usr CC=$(TARGET_CC)-C $(NTFS-3G_DIR)
        touch $@
 #              CROSS_COMPILE="$(TARGET_CROSS)"
 
 
+
 $(STAGING_DIR)/usr/bin/ntfs-3g: $(NTFS-3G_DIR)/.compiled
        $(MAKE) prefix=$/usr -C $(NTFS-3G_DIR) DESTDIR=$(STAGING_DIR)/ install
        touch -c $@
index 2acc368497250493f97c50dbfa88b1e2854ef01a..6910fd7cc203831d42ba6e1660ad8999d515a8f2 100644 (file)
@@ -2,7 +2,7 @@ config BR2_PACKAGE_OLSR
        bool "OLSR mesh networking Daemon"
        help
          olsr
-         
+       
          The Optimized Link State Routing protocol (OLSR) is a routing protocol that is optimised
          for mobile ad-hoc networks, sometimes called wireless mesh networks. It is a proactive
          link-state routing protocol that floods a full topology table to all nodes in the network
index 5650a19b0fa0a6e76ebd308a76da54a37fb235f8..1178d68a24445408738f9542eee104ecb3285d57 100644 (file)
@@ -56,7 +56,7 @@ $(OPENMOTIF_DIR)/.configured: $(OPENMOTIF_HOST_DIR)/.configured
        touch $(OPENMOTIF_DIR)/.configured
 
 $(OPENMOTIF_HOST_DIR)/.done: $(OPENMOTIF_DIR)/.configured
-       $(MAKE) -C $(OPENMOTIF_HOST_DIR) 
+       $(MAKE) -C $(OPENMOTIF_HOST_DIR)
        ln -s -f $(OPENMOTIF_HOST_DIR)/config/util/makestrs $(OPENMOTIF_DIR)/config/util/makestrs-host
        ln -s -f $(OPENMOTIF_HOST_DIR)/tools/wml/wmluiltok $(OPENMOTIF_DIR)/tools/wml/wmluiltok-host
        ln -s -f $(OPENMOTIF_HOST_DIR)/tools/wml/wml $(OPENMOTIF_DIR)/tools/wml/wml-host
@@ -70,7 +70,7 @@ $(OPENMOTIF_HOST_DIR)/.done: $(OPENMOTIF_DIR)/.configured
        touch $(OPENMOTIF_HOST_DIR)/.done
 
 $(OPENMOTIF_DIR)/.done: $(OPENMOTIF_HOST_DIR)/.done
-       $(MAKE) -C $(OPENMOTIF_DIR) 
+       $(MAKE) -C $(OPENMOTIF_DIR)
        $(MAKE) -C $(OPENMOTIF_DIR) install DESTDIR=$(STAGING_DIR)
        $(MAKE) -C $(OPENMOTIF_DIR) install DESTDIR=$(TARGET_DIR)
        touch $(OPENMOTIF_DIR)/.done
index bb58de04fb838ffa43e0298fe4c94034274c69db..0c3d993a68fa97a34cb0883ce68f9e364b7ea525 100644 (file)
@@ -3,7 +3,7 @@ config BR2_PACKAGE_OPENSSH
        select BR2_PACKAGE_OPENSSL
        select BR2_PACKAGE_ZLIB
        help
-         A free version of the SSH protocol suite of network connectivity 
+         A free version of the SSH protocol suite of network connectivity
          tools.  The standard 'ssh', 'sshd', 'scp', and friends.
 
          http://www.openssh.com/
index f5a82ad911233b2ba3a39866a1604522e3507001..00dfb7550b18fbffc037d8f48d225365bd4d1b5e 100644 (file)
@@ -1,9 +1,9 @@
 config BR2_PACKAGE_OPENSSL
        bool "openssl"
        help
-         A collaborative effort to develop a robust, commercial-grade, fully 
-         featured, and Open Source toolkit implementing the Secure Sockets 
-         Layer (SSL v2/v3) and Transport Security (TLS v1) as well as a 
+         A collaborative effort to develop a robust, commercial-grade, fully
+         featured, and Open Source toolkit implementing the Secure Sockets
+         Layer (SSL v2/v3) and Transport Security (TLS v1) as well as a
          full-strength general-purpose cryptography library.
 
          http://www.openssl.org/
index aa8b9f1847ebcac77e2fef93cd87a1d28052a285..9069cacc5bf85017914d3461260fd5e963267fd1 100644 (file)
@@ -3,11 +3,11 @@ config BR2_PACKAGE_OPENVPN
        select BR2_PACKAGE_LZO
        select BR2_PACKAGE_OPENSSL
        help
-         OpenVPN is a full-featured SSL VPN solution which can 
-         accomodate a wide range of configurations, including road 
-         warrior access, home/office/campus telecommuting, WiFi 
-         security, secure branch office linking, and enterprise-scale 
-         remote access solutions with load balancing, failover, and 
+         OpenVPN is a full-featured SSL VPN solution which can
+         accomodate a wide range of configurations, including road
+         warrior access, home/office/campus telecommuting, WiFi
+         security, secure branch office linking, and enterprise-scale
+         remote access solutions with load balancing, failover, and
          fine-grained access-controls.
 
          http://openvpn.sourceforge.net/
index 5f4cc37250f221030e8fb896689897fdde1024d0..7cafe468ae1f2ec2192cbbb34f6b7877da1204db 100644 (file)
@@ -16,4 +16,4 @@ config BR2_PACKAGE_OPROFILE
          statistics, which can also be used for basic time-spent
          profiling. All code is profiled: hardware and software
          interrupt handlers, kernel modules, the kernel, shared
-         libraries, and applications. 
+         libraries, and applications.
index d84bbeda3abf3a515de6ed5cafa7a48086c8b343..89f0e63371c082004c4238c235cb6df3b15b9bc3 100644 (file)
@@ -9,7 +9,7 @@ PANGO_SITE = http://ftp.gnome.org/pub/GNOME/sources/pango/1.19
 PANGO_AUTORECONF = YES
 PANGO_INSTALL_STAGING = YES
 PANGO_INSTALL_TARGET = YES
-PANGO_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install 
+PANGO_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
 PANGO_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
 
 PANGO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
@@ -40,14 +40,14 @@ PANGO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
                gl_cv_func_mkdir_trailing_slash_bug=no gl_cv_func_mkstemp_limitations=no \
                ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
                ac_use_included_regex=no gl_cv_c_restrict=no PKG_CONFIG_SYSROOT="$(STAGING_DIR)" \
-               ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal ac_cv_path_FREETYPE_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config 
+               ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal ac_cv_path_FREETYPE_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config
                
 ifneq ($(BR2_PACKAGE_XSERVER_none),y)
         PANGO_CONF_OPT_X = --with-x \
                --x-includes=$(STAGING_DIR)/usr/include/X11 \
                --x-libraries=$(STAGING_DIR)/usr/lib --disable-glibtest
 else
-        PANGO_CONF_OPT_X = --without-x 
+        PANGO_CONF_OPT_X = --without-x
 endif
 
 PANGO_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
@@ -62,7 +62,7 @@ PANGO_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
                --enable-explicit-deps=no --disable-debug PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig"
 
 
-PANGO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 $(XSERVER) cairo 
+PANGO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 $(XSERVER) cairo
 
 
 $(eval $(call AUTOTARGETS,package,pango))
index aca01658895946b6d2159dee8d6f4f08a1a85dc1..5a80ea561f8a7182eb2faabec09d985f5e1b7493 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_PATCH
        bool "patch"
        help
-         Take patch files (containing difference listings) and apply them 
+         Take patch files (containing difference listings) and apply them
          to original files, producing patched versions.
 
          http://www.gnu.org/software/patch/
index a43b09e9f7c835f2a9df228a630a140326d3190d..aef6e58c648595c651b194ad014f27efcf07582c 100644 (file)
@@ -12,7 +12,7 @@ config BR2_PACKAGE_PHP_CLI
         depends on BR2_PACKAGE_PHP
         default y
         help
-          command line interface for php. 
+          command line interface for php.
           you must have at least cli or cgi selected.
 
 config BR2_PACKAGE_PHP_CGI
index c6b0bbbc759bda9f789e510940becfcd434bb522..74f89b400b751598730132b71fcb39a2af257b83 100644 (file)
@@ -33,7 +33,7 @@ ifneq ($(BR2_INET_IPV6),y)
        PHP_CONFIGURE+=--disable-ipv6
 endif
 
-### Extensions 
+### Extensions
 ifeq ($(BR2_PACKAGE_PHP_EXT_SOCKETS),y)
        PHP_CONFIGURE+=--enable-sockets
 endif
index 31399e434313f606168d1371bdfe9f66df62e5ad..a78cfb440deb8cdf2eb120d0d8bed48de6f7f65f 100644 (file)
@@ -8,7 +8,7 @@ POPT_SITE = http://rpm5.org/files/popt
 POPT_INSTALL_STAGING = YES
 
 
-POPT_CONF_ENV = ac_cv_va_copy=yes 
+POPT_CONF_ENV = ac_cv_va_copy=yes
 
 
 POPT_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(REAL_GNU_TARGET_NAME) \
index 6e15d70f248b5805c363db1466db506d369ff5bb..63aeb315610412e1db2cde935600e08ffe6b6819 100644 (file)
@@ -74,7 +74,7 @@ config BR2_PACKAGE_PYTHON_READLINE
        depends on BR2_PACKAGE_PYTHON
        bool "readline"
        help
-         readline module for Python (required for command-line 
+         readline module for Python (required for command-line
          editing in the Python shell).
 
 config BR2_PACKAGE_PYTHON_SSL
index d1f415e30cc8e14f5a215c9aa64f84a657ff588f..7f6b5d69662057eedc3ca9d6e39f97e12a0aee1d 100644 (file)
@@ -83,7 +83,7 @@ config BR2_PACKAGE_QTOPIA4_QT3SUPPORT
        bool "Compatibility with Qt3"
        depends on BR2_PACKAGE_QTOPIA4
        help
-         Turns on support for older Qt3. This will create an additional 
+         Turns on support for older Qt3. This will create an additional
          library with proxy code and increase the space required on target.
          If unsure say n.
 
@@ -185,7 +185,7 @@ config BR2_PACKAGE_QTOPIA4_SYSTEMZLIB
        help
          Use the shared zlib from the system.
 endchoice
-                                                                   
+                                                               
 choice
        prompt "freetype2 support"
        depends on BR2_PACKAGE_QTOPIA4
index 8971dff14ea1fa67eb416aa76aee3ce4f458029b..e9c1e063d72de9d70beb909347ded1a0fc9c1736 100644 (file)
@@ -11,9 +11,9 @@ RUBIX_INSTALL_STAGING = NO
 RUBIX_INSTALL_TARGET = YES
 RUBIX_INSTALL_TARGET_OPT = GAMESDIR=$(TARGET_DIR)/usr/games install
 
-RUBIX_MAKE_OPT = CC=$(TARGET_CC) XINC="-I$(STAGING_DIR)/usr/include/X11" XLIB="-L$(STAGING_DIR)/usr/lib -lX11" 
+RUBIX_MAKE_OPT = CC=$(TARGET_CC) XINC="-I$(STAGING_DIR)/usr/include/X11" XLIB="-L$(STAGING_DIR)/usr/lib -lX11"
 
-RUBIX_DEPENDENCIES = uclibc 
+RUBIX_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package,rubix))
 
index af6173f2ac28a46a0197a3a27fb5427dccc2ca23..c23239235af45e6484d6abbeda9b4f583b56e6fa 100644 (file)
@@ -2,11 +2,11 @@ config BR2_PACKAGE_SCREEN
        bool "screen"
        select BR2_PACKAGE_NCURSES
        help
-         Screen is a full-screen window manager that multiplexes a physical 
-         terminal between several processes, typically interactive shells. 
-         Each virtual terminal provides the functions of the DEC VT100 
-         terminal and, in addition, several control functions from the ANSI 
-         X3.64 (ISO 6429) and ISO 2022 standards (e.g., insert/delete line 
+         Screen is a full-screen window manager that multiplexes a physical
+         terminal between several processes, typically interactive shells.
+         Each virtual terminal provides the functions of the DEC VT100
+         terminal and, in addition, several control functions from the ANSI
+         X3.64 (ISO 6429) and ISO 2022 standards (e.g., insert/delete line
          and support for multiple character sets).
 
          http://www.gnu.org/software/screen/
index 9537afdb05dff52a7135b2399b7a6033772afcdc..95fd31dae9767dfc8da0cf1dd1990a95fb182bf8 100644 (file)
@@ -12,5 +12,5 @@ config BR2_PACKAGE_SPEEX_ARM5E
        default y
        depends on BR2_PACKAGE_SPEEX && BR2_arm
        help
-         Use the additional instructions available in the ARM5E 
+         Use the additional instructions available in the ARM5E
          or later cores.
index cc2b8d2a768a185846dcd51ed0ddd78b205d4d03..6526f21f5b48b1ee2d369466709ef4266bdc47fa 100644 (file)
@@ -12,7 +12,7 @@ STARTUP_NOTIFICATION_INSTALL_TARGET = YES
 
 STARTUP_NOTIFICATION_CONF_ENV = lf_cv_sane_realloc=yes
 
-STARTUP_NOTIFICATION_DEPENDENCIES = uclibc 
+STARTUP_NOTIFICATION_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package,startup-notification))
 
index 5af6c6b0640b6a019ea04ef82ac0ed495c705c8b..bbb582ad53064b02382e99e7f199db33803b16df 100644 (file)
@@ -2,7 +2,7 @@ config BR2_PACKAGE_STRACE
        bool "strace"
        help
          A useful diagnostic, instructional, and debugging tool.
-         Allows you to track what system calls a program makes 
+         Allows you to track what system calls a program makes
          while it is running.
 
          http://sourceforge.net/projects/strace/
index fc0384ea384dec6df85f9ee817fbbf8d950159a9..fe6a634de18e7f9726839fe28c4555b06238cd60 100644 (file)
@@ -2,9 +2,9 @@ config BR2_PACKAGE_SYNERGY
        bool "synergy"
        depends on BR2_PACKAGE_XORG7
        help
-         Synergy lets you easily share a single mouse and 
-         keyboard between multiple computers with different 
-         operating systems, each with its own display, 
+         Synergy lets you easily share a single mouse and
+         keyboard between multiple computers with different
+         operating systems, each with its own display,
          without special hardware.
 
          http://synergy2.sourceforge.net/
index 8846c2bb3ecc5bcc946a40bf4fbe2199d389c711..b89f3cd40e34736c0c56013df5c1b523066e1a4e 100644 (file)
@@ -12,7 +12,7 @@ SYNERGY_INSTALL_STAGING = NO
 SYNERGY_INSTALL_TARGET = YES
 
 SYNERGY_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
-               --build=$(GNU_HOST_NAME) --prefix=/usr --sysconfdir=/etc 
+               --build=$(GNU_HOST_NAME) --prefix=/usr --sysconfdir=/etc
 
 SYNERGY_DEPENDENCIES = uclibc $(XSERVER)
 
index 534583d3ec4a3981fcc472e8c9bdeeb9c0cee68d..e614b921159700550c14a59467ceef6c0a868d96 100644 (file)
@@ -3,7 +3,7 @@ config BR2_PACKAGE_TAR
        depends on BR2_USE_WCHAR
        select BR2_UCLIBC_PROGRAM_INVOCATION
        help
-         A program that saves many files together into a single tape or disk 
+         A program that saves many files together into a single tape or disk
          archive, and can restore individual files from the archive.
 
          http://www.gnu.org/software/tar/
index e1cbbf4eb36628dfd337345654e7af4ffdb47b86..eb601637ee283c6cc2388f37257bdb8f9b77d334 100644 (file)
@@ -3,5 +3,5 @@ config BR2_PACKAGE_TINYHTTPD
        help
          A relatively simple webserver written as a school project. It is
          exceedingly simple, threaded and handles basic CGI scripts.
-                
+               
          http://sourceforge.net/projects/tinyhttpd/
index 30e1ca4a0935ef537f90ca431ed7d0185237fd0b..d1b04a5391725d17c9aff3b10dcb13119118650f 100644 (file)
@@ -28,7 +28,7 @@ $(TINYHTTPD_DIR)/.unpacked: $(DL_DIR)/$(TINYHTTPD_SOURCE)
 
 $(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY): $(TINYHTTPD_DIR)/.unpacked
        $(TARGET_CONFIGURE_OPTS) CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" $(MAKE) -C $(TINYHTTPD_DIR)
-   
+
 $(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY): $(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY)
        $(INSTALL) -m 0755 $(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY) $(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY)
        $(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY)
index f5544bb7e128e99220ad11cbde0c422227277ebb..ee2c375bbac81ddf70ed19fdc1a3525bbb1ab0af 100644 (file)
@@ -1,8 +1,8 @@
 config BR2_PACKAGE_TINYLOGIN
        bool "tinylogin"
        help
-         Suite of tiny Unix utilities for handling logging into, 
-         being authenticated by, changing one's password for, and 
+         Suite of tiny Unix utilities for handling logging into,
+         being authenticated by, changing one's password for, and
          otherwise maintaining users and groups on an embedded system.
 
          http://tinylogin.busybox.net/
index af8f1836ad4da9c2cb8773b0e637529779050e50..93a3dc145e6fc1a88dbd5392d9147856824908d4 100644 (file)
@@ -12,7 +12,7 @@ TORSMO_INSTALL_TARGET = YES
 
 TORSMO_CONF_OPT = --x-includes="-I$(STAGING_DIR)/usr/include/X11" --x-libraries="-I$(STAGING_DIR)/usr/lib" --with-x
 
-TORSMO_DEPENDENCIES = uclibc 
+TORSMO_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package,torsmo))
 
index 8dc6cf79ad18b482a6fe4ea254696d11bee9416d..b16a644f93eccf584d648b2d77ecf4f5cba53cf8 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_UDHCP
        bool "udhcp"
        help
-         An embedded dhcp server/client package that strives to be 
+         An embedded dhcp server/client package that strives to be
          fully functional, RFC compliant, and really tiny.
 
          http://udhcp.busybox.net/
index a45910e484ab28cade6efef91ce0f8e971ba7a74..b595dd336f07c006324b03920ceafd234f55555b 100644 (file)
@@ -12,7 +12,7 @@ VICE_INSTALL_TARGET = YES
 
 VICE_CONF_OPT = --without-resid --with-alsa CFLAGS="-O0"
 
-VICE_DEPENDENCIES = uclibc 
+VICE_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package,vice))
 
index 4db999bb5c2520cea668401b844aa91287923992..e285fdaec9dd39eeb0c0d610d5c870ecc516db38 100644 (file)
@@ -10,9 +10,9 @@ VLC_AUTORECONF = NO
 VLC_INSTALL_STAGING = NO
 VLC_INSTALL_TARGET = YES
 
-VLC_CONF_OPT = 
+VLC_CONF_OPT =
 
-VLC_DEPENDENCIES = uclibc 
+VLC_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package,vlc))
 
index f1e5421fc211fd9221d5e235c88a98f7841973db..a1d2856050c965a0175389aaa1ee55532ef4253c 100644 (file)
@@ -3,7 +3,7 @@ config BR2_PACKAGE_VTUN
        select BR2_PACKAGE_LZO
        select BR2_PACKAGE_OPENSSL
        help
-         Tool for easily creating Virtual Tunnels over TCP/IP networks 
+         Tool for easily creating Virtual Tunnels over TCP/IP networks
          with traffic shaping, compression, and encryption.
 
          It supports IP, PPP, SLIP, Ethernet and other tunnel types.
index 4d06c6513a1f173fb8344e25b74f650951ffd77d..dbb10b2bd7b4178265782548112e5b405110891d 100644 (file)
@@ -2,12 +2,12 @@ config BR2_PACKAGE_WEBKIT
        bool "webkit"
        select BR2_PACKAGE_LIBGTK2
        select BR2_PACKAGE_ICU
-       select BR2_PACKAGE_CURL 
-       select BR2_PACKAGE_LIBXML2 
-       select BR2_PACKAGE_LIBXSLT 
+       select BR2_PACKAGE_CURL
+       select BR2_PACKAGE_LIBXML2
+       select BR2_PACKAGE_LIBXSLT
        select BR2_PACKAGE_SQLITE
        help
-               WebKit is an open source, standards compliant web browser engine. 
+               WebKit is an open source, standards compliant web browser engine.
 
                http://webkit.org/
 
index c297e87bff08d07c3cdf5bb238ae4841bfd3190a..6bf79124446737c02f7db44cbdb51a25504f3f35 100644 (file)
@@ -9,7 +9,7 @@ WEBKIT_SITE = http://nightly.webkit.org/files/trunk/src/
 
 WEBKIT_INSTALL_STAGING = YES
 WEBKIT_INSTALL_TARGET = YES
-WEBKIT_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install 
+WEBKIT_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
 
 WEBKIT_AUTORECONF = YES
 WEBKIT_DEPENDENCIES = icu curl libxml2 libxslt xserver_xorg-server libgtk2 sqlite
index 6b1ddd0dae5f98996018b910cd3b3b5fb58a6b5a..de13e87b902505b25b6005b5179664fb2d62c739 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_PTHREAD_STUBS
        bool "pthread-stubs"
        help
-               This library provides weak aliases for pthread functions not 
+               This library provides weak aliases for pthread functions not
                provided in libc or otherwise available by default.
 
                http://xcb.freedesktop.org/
index 209b6c543ed38a76d28341f7878b0d0ec344b549..d6e296f0e717373f8d3ff583fbd99f646c66c0e5 100644 (file)
@@ -13,7 +13,7 @@ XKEYBOARD_CONFIG_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
 
 XKEYBOARD_CONFIG_CONF_OPT = GMSGFMT=/usr/bin/msgfmt
 
-XKEYBOARD_CONFIG_DEPENDENCIES = uclibc 
+XKEYBOARD_CONFIG_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package/x11r7,xkeyboard-config))
 
index a33cb957c41fb6fabdfb977629c4be5fa98327c1..1fbe7110e55ee90b5bfea9cd4a71ec30656d0612 100644 (file)
@@ -11,7 +11,7 @@ XPDF_INSTALL_STAGING = NO
 XPDF_INSTALL_TARGET = YES
 XPDF_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
 
-XPDF_CONF_OPT = --enable-multithreaded 
+XPDF_CONF_OPT = --enable-multithreaded
 
 ifeq ($(BR2_SOFT_FLOAT),y)
        XPDF_CONF_OPT += --enable-fixedpoint
@@ -22,7 +22,7 @@ ifneq ($(BR2_PACKAGE_XSERVER_none),y)
        XPDF_CONF_OPT += --with-Xm-library=$(STAGING_DIR)/usr/lib --with-Xm-includes=$(STAGING_DIR)/usr/include/Xm \
                                        --with-x --with-freetype2-includes=$(STAGING_DIR)/usr/include \
                                        --with-freetype2-library=$(STAGING_DIR)/usr/lib CFLAGS="-I$(STAGING_DIR)/usr/include/freetype2" \
-                                       CXXFLAGS="-I$(STAGING_DIR)/usr/include/freetype2" 
+                                       CXXFLAGS="-I$(STAGING_DIR)/usr/include/freetype2"
 endif
 
 XPDF_DEPENDENCIES = uclibc freetype
index 30707347b27195a347f1a0feda6138aec71b5316..eeda15e16422c4ea22754e8b3548b287338f5b09 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_ZLIB
        bool "zlib"
        help
-         Standard (de)compression library.  Used by things like 
+         Standard (de)compression library.  Used by things like
          gzip and libpng.
 
          http://www.gzip.org/zlib/
index c9b0e469b02267652f5a077236b7dcd61a1e4de6..017dd87fa7f78dc5758d2ae9052ee9b1a2258e06 100644 (file)
@@ -130,7 +130,7 @@ choice
        default BR2_mips_1 if BR2_mipsel
        help
          Specific CPU variant to use
-         
+       
          64bit cabable: 3, 4, 64, 64r2
          non-64bit capable: 1, 2, 32, 32r2
 
index d1eca2a745ae0bcb74290f0c315c900839dd1fd0..83bdd21e046ca054666c8938ffc955c6f5413d09 100644 (file)
@@ -46,5 +46,5 @@ config BR2_TARGET_ROOTFS_CPIO_COPYTO
        help
          Copies the resulting image to a secondary location
          like a tftp server's root directory.
-         
+       
          Example: $(IMAGE)-$(DATE).cpio$(CPIO_ROOTFS_COMPRESSOR_EXT)
index e2dc3835e6a4539f377a035968ea0fe51a427a09..b5c4a9a87231a10f9c02e63b1dd656610fd34628 100644 (file)
@@ -11,7 +11,7 @@ config BR2_ATMEL_MIRROR
          Issues with contents of this server needs to be highlighted
          on the buildroot mailing list and
          should not be addressed directly to Atmel
-         Atmel provides support for their AVR32 chips on 
+         Atmel provides support for their AVR32 chips on
          http://avr32linux.org/ or http://www.avrfreaks.net/
          Atmel provides support for AT91 chips on www.at91.com.
          Commercial AT91 Linux support is through www.timesys.com
index f15596abbae112764dd174263b8b09f44f7f78a4..5e5a39ec3f750cf3e46b72005d9f6028415febdb 100644 (file)
@@ -73,7 +73,7 @@ config        BR2_LINUX_AVR32_ISI_PATCH
 config BR2_LINUX_AVR32_AC97_PATCH
        bool "Add AC97 patch"
        help
-         Add support for AC97. 
+         Add support for AC97.
          Will need to be patched further to change GPIO_PIN_NONE
          to the real pin used as AC-97 reset pin.
 
index 41286027d3873b788a47d14c520d6b3a3511a306..b54a4a13fbfd242b0db5dfd689779f67bc748d4c 100644 (file)
@@ -5,7 +5,7 @@ menuconfig BR2_TARGET_SHARP
 if BR2_TARGET_SHARP
 comment "Sharp Specific Device Support"
        depends on BR2_arm
+
 config BR2_TARGET_SHARP_LNODE80
        bool "Board support for the LNode80 development board"
        depends on BR2_arm
index 8945057a0c9bc4c2ab494428a178a0ebed33c054..d53982cb9a55921f9db7de4834cc752aab39aafc 100644 (file)
@@ -2,10 +2,10 @@ config BR2_TARGET_ROOTFS_INITRAMFS
        bool "initramfs for initial ramdisk of linux kernel"
        help
          Build a file which is usable for the gen_init_cpio tool
-         at linux kernel build. 
+         at linux kernel build.
          This file is normally called initramfs_list and can be
          generated with gen_initramfs_list.sh script from the root
-         directory structure. 
+         directory structure.
          The file is then used in the kernel build process to generate
          the cpio filesystem for the initial ramdisk. Make sure that
          you configure this file in kernel build configuration.
index 3e68145db931b53c5d23574197cf7b05e04950d3..a5f9418b8e2a281a7ceace5466c8f9a9633a0b8c 100644 (file)
@@ -1,33 +1,33 @@
 if BR2_KERNEL_LINUX_ADVANCED
 # --- "Linux kernel options"
 # This file exports the following symbols for use by Makefile's
-# 
+#
 # BR2_PACKAGE_LINUX
-# 
+#
 # BR2_KERNEL_SITE
 # BR2_DOWNLOAD_LINUX26_VERSION
 # BR2_LINUX26_VERSION
-# 
+#
 # BR2_KERNEL_PATCH_SITE
 # BR2_KERNEL_PATCH
-# 
+#
 # BR2_LINUX26_CUSTOM
 # BR2_CUSTOM_LINUX26_PATCH_SITE
 # BR2_CUSTOM_LINUX26_PATCH
-# 
+#
 # BR2_LINUX_BSP_PATCH
-# 
+#
 # BR2_PACKAGE_LINUX_USE_KCONFIG
 # BR2_PACKAGE_LINUX_USE_DEFCONFIG
 # BR2_PACKAGE_LINUX_USE_XCONFIG
 # BR2_PACKAGE_LINUX_KCONFIG
-# 
+#
 # BR2_PACKAGE_LINUX_FORMAT
-# 
+#
 # BR2_LINUX_COPYTO_ROOTFS
 # BR2_LINUX_COPYTO_TFTPBOOT
 # BR2_LINUX_COPYTO
-# 
+#
 # ---------------------------------------------------------------------------
 # --- These 'constants' requires regular maintenance, so put them first
 config BR2_KERNEL_PATCH_LEVEL
@@ -340,7 +340,7 @@ source "target/device/Config.in.linux.patches"
 
 config BR2_LINUX_BOARD_PATCH
        bool "Add board specific patch"
-       default y 
+       default y
 
 config BR2_LINUX_BSP_PATCH
        string "Additional patch to apply (from \$(DL_DIR))"
index eb2b36ee117797a4ca874361b786b4bc64463a2f..ca6b352cf4ad08eaee5bf1e930567ceb79d8b28a 100644 (file)
@@ -91,7 +91,7 @@ LINUX26_MAKE_FLAGS = HOSTCC="$(HOSTCC)" HOSTCFLAGS="$(HOSTCFLAGS)" \
        INSTALL_MOD_PATH=$(TARGET_DIR) \
        CROSS_COMPILE=$(KERNEL_CROSS) \
        LDFLAGS="$(TARGET_LDFLAGS)" \
-       LZMA="$(LZMA)" 
+       LZMA="$(LZMA)"
 
 $(LINUX26_KCONFIG):
        @if [ ! -f "$(LINUX26_KCONFIG)" ] ; then \
index 9a3a69a50083de4a5029b936b893e05ed74d9a84..c3d713a3d9632fe6d1081044c6cc4792bc0c0c0a 100644 (file)
@@ -187,7 +187,7 @@ LINUX26_MAKE_FLAGS = HOSTCC="$(HOSTCC)" HOSTCFLAGS="$(HOSTCFLAGS)" \
        INSTALL_MOD_PATH=$(TARGET_DIR) \
        CROSS_COMPILE=$(KERNEL_CROSS) \
        LDFLAGS="$(TARGET_LDFLAGS)" \
-       LZMA="$(LZMA)" 
+       LZMA="$(LZMA)"
 
 # =============================================================================
 # ifneq ($(strip $(LINUX26_VERSION)),$(strip $(LINUX_HEADERS_VERSION)))
@@ -300,7 +300,7 @@ KERNEL_EXTRA_VERSION:=$(strip $(subst ",,$(BR2_EXTRA_VERSION)))
 
 $(LINUX26_DIR)/.config:        $(LINUX26_DIR)/.patched.board
 ifeq ($(BR2_PACKAGE_LINUX_USE_DEFCONFIG),y)
-       $(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) $(BOARD_NAME)_defconfig 
+       $(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) $(BOARD_NAME)_defconfig
 endif
 ifeq ($(BR2_PACKAGE_LINUX_USE_XCONFIG),y)
        $(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) $(KERNEL_CONFIG_METHOD)
index b46af1517b527d3a25c651e686bde194c443d9f2..bc7a73e73df4e91a18fde6764a1451f752a09f06 100644 (file)
@@ -9,7 +9,7 @@ config BR2_TARGET_GRUB_SPLASH
        depends on BR2_TARGET_GRUB
        help
          Add support for splashimage.
-         
+       
          A splashimage is a 14-color indexed .xpm picture which
          is displayed as background for the grub menu.
 
index f9458b1853ba23a350f942d266640668e6150b79..752639993a2ff995dbb2928c707c17f3b6140b6a 100644 (file)
@@ -8,6 +8,6 @@ config BR2_TARGET_GRUB2_SPLASH
        depends on BR2_TARGET_GRUB2
        help
          Add support for splashimage.
-         
+       
          A splashimage is a 14-color indexed .xpm picture which
          is displayed as background for the grub menu.
index 74015787094e4f4cf933e31e42dbcf999cdb98cc..ccea8c5e716a14989273ead03859c743898d089a 100644 (file)
@@ -13,7 +13,7 @@ choice
 config BR2_TOOLCHAIN_BUILDROOT
        bool "Buildroot toolchain"
        depends on !BR2_avr32
-  
+
 config BR2_TOOLCHAIN_EXTERNAL
        bool "External binary toolchain"
 
index 11790363eb12a36dc65f5f780c1a3c209bff4439..a3d48e8c04b5554a3c464bbc68409367345848a0 100644 (file)
@@ -80,6 +80,6 @@ config BR2_UCLIBC_PROGRAM_INVOCATION
        bool "Enable 'program invocation name'"
        help
          Support for the GNU-specific program_invocation_name and
-         program_invocation_short_name strings.  Some GNU packages 
+         program_invocation_short_name strings.  Some GNU packages
          (like tar and coreutils) utilize these for extra useful
          output, but in general are not required.
index 4e8a7e3e605a2fd856df559a4a9c178c7c91fc44..dba5a96d9026b989faeadee1fe9d6fc8b9cdabfe 100644 (file)
@@ -385,34 +385,34 @@ ifeq ($(BR2_x86_i486),y)
 endif
 ifeq ($(BR2_x86_i586),y)
        $(SED) 's,# CONFIG_586 is not set,CONFIG_586=y,g' $(UCLIBC_DIR)/.oldconfig
-endif 
+endif
 ifeq ($(BR2_x86_pentium_mmx),y)
        $(SED) 's,# CONFIG_586MMX is not set,CONFIG_586MMX=y,g' $(UCLIBC_DIR)/.oldconfig
-endif 
+endif
 ifeq ($(BR2_x86_i686),y)
        $(SED) 's,# CONFIG_686 is not set,CONFIG_686=y,g' $(UCLIBC_DIR)/.oldconfig
 endif
 ifeq ($(BR2_x86_pentiumpro),y)
        $(SED) 's,# CONFIG_686 is not set,CONFIG_686=y,g' $(UCLIBC_DIR)/.oldconfig
-endif 
+endif
 ifeq ($(BR2_x86_pentium2),y)
        $(SED) 's,# CONFIG_PENTIUMII is not set,CONFIG_PENTIUMII=y,g' $(UCLIBC_DIR)/.oldconfig
-endif 
+endif
 ifeq ($(BR2_x86_pentium3),y)
        $(SED) 's,# CONFIG_PENTIUMIII is not set,CONFIG_PENTIUMIII=y,g' $(UCLIBC_DIR)/.oldconfig
-endif 
+endif
 ifeq ($(BR2_x86_pentium4),y)
        $(SED) 's,# CONFIG_PENTIUM4 is not set,CONFIG_PENTIUM4=y,g' $(UCLIBC_DIR)/.oldconfig
-endif 
+endif
 ifeq ($(BR2_x86_pentium_m),y)
        $(SED) 's,# CONFIG_PENTIUM4 is not set,CONFIG_PENTIUM4=y,g' $(UCLIBC_DIR)/.oldconfig
-endif 
+endif
 ifeq ($(BR2_x86_nocona),y)
        $(SED) 's,# CONFIG_PENTIUM4 is not set,CONFIG_PENTIUM4=y,g' $(UCLIBC_DIR)/.oldconfig
-endif 
+endif
 ifeq ($(BR2_x86_core2),y)
        $(SED) 's,# CONFIG_PENTIUM4 is not set,CONFIG_PENTIUM4=y,g' $(UCLIBC_DIR)/.oldconfig
-endif 
+endif
 endif
 
 $(UCLIBC_DIR)/.config: $(UCLIBC_DIR)/.oldconfig
@@ -575,7 +575,7 @@ uclibc-clean:
 uclibc-dirclean:
        rm -rf $(UCLIBC_DIR)
 
-uclibc-target-utils: 
+uclibc-target-utils:
 #$(TARGET_DIR)/usr/bin/ldd
 
 uclibc-target-utils-source: $(DL_DIR)/$(UCLIBC_SOURCE)