diff options
-rw-r--r-- | gawk.morph | 13 | ||||
-rw-r--r-- | stage2-gawk.morph | 21 |
2 files changed, 14 insertions, 20 deletions
@@ -1,8 +1,5 @@ -{ - "name" : "gawk", - "kind" : "chunk", - "build-system" : "autotools", - "configure-commands": [ - "./configure --prefix=\"$PREFIX\" --disable-nls" - ] -} +name: gawk +kind: chunk +build-system: autotools +configure-commands: +- ./configure --prefix="$PREFIX" --disable-nls diff --git a/stage2-gawk.morph b/stage2-gawk.morph index 64af05ab..f644d72b 100644 --- a/stage2-gawk.morph +++ b/stage2-gawk.morph @@ -1,12 +1,9 @@ -{ - "name" : "stage2-gawk", - "kind" : "chunk", - "build-system" : "autotools", - "configure-commands": [ - "stage2-eglibc-fix-specs", - "STAGE2_SYSROOT=\"$(dirname $(pwd))\" CPPFLAGS=\"--sysroot=$STAGE2_SYSROOT\" CXX=false LDFLAGS=\"-Wl,--sysroot=$STAGE2_SYSROOT\" ./configure --prefix=\"$PREFIX\" --disable-nls --build=$(sh config.guess) --host=$TARGET_STAGE1" - ], - "build-commands": [ - "STAGE2_SYSROOT=\"$(dirname $(pwd))\" make" - ] -} +name: stage2-gawk +kind: chunk +build-system: autotools +configure-commands: +- STAGE2_SYSROOT="$(dirname $(pwd))" CPPFLAGS="--sysroot=$STAGE2_SYSROOT" CXX=false + LDFLAGS="-Wl,--sysroot=$STAGE2_SYSROOT" ./configure --prefix="$PREFIX" --disable-nls + --build=$(sh config.guess) --host=$TARGET_STAGE1 +build-commands: +- STAGE2_SYSROOT="$(dirname $(pwd))" make |