changeset 447:0da18d27453e

improved coding style
author Volker Grabsch <vog@notjusthosting.com>
date Sun, 20 Sep 2009 13:59:54 +0200
parents a36524aced85
children e9afec55fd6b
files src/gcc-pthreads.mk src/gcc.mk
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/gcc-pthreads.mk	Sun Sep 20 13:56:19 2009 +0200
+++ b/src/gcc-pthreads.mk	Sun Sep 20 13:59:54 2009 +0200
@@ -32,6 +32,6 @@
 define $(PKG)_UPDATE
     wget -q -O- 'ftp://sourceware.org/pub/pthreads-win32/Release_notes' | \
     $(SED) -n 's,^RELEASE \([0-9][^[:space:]]*\).*,\1,p' | \
-        tr '.' '-' | \
+    tr '.' '-' | \
     head -1
 endef
--- a/src/gcc.mk	Sun Sep 20 13:56:19 2009 +0200
+++ b/src/gcc.mk	Sun Sep 20 13:59:54 2009 +0200
@@ -67,7 +67,7 @@
     mv '$(1)/$(gcc-mpfr_SUBDIR)' '$(1)/$(gcc-core_SUBDIR)/mpfr'
     # build everything of GCC except libgomp and libmudflap
     mkdir '$(1)/build'
-    cd '$(1)/build' && '$(1)/$(gcc-core_SUBDIR)/configure' \
+    cd    '$(1)/build' && '$(1)/$(gcc-core_SUBDIR)/configure' \
         $(gcc_CONFIGURE_OPTIONS) \
         --enable-threads=win32 \
         --disable-libgomp \
@@ -87,7 +87,7 @@
     # build libgomp
     $(SED) 's,cross_compiling=no,cross_compiling=yes,' -i '$(1)/$(gcc-core_SUBDIR)/libgomp/configure'
     mkdir '$(1)/build/$(TARGET)/libgomp'
-    cd '$(1)/build/$(TARGET)/libgomp' && '$(1)/$(gcc-core_SUBDIR)/libgomp/configure' \
+    cd    '$(1)/build/$(TARGET)/libgomp' && '$(1)/$(gcc-core_SUBDIR)/libgomp/configure' \
         $(gcc_CONFIGURE_OPTIONS) \
         --host='$(TARGET)' \
         LIBS='-lws2_32'