diff --git a/tcpkg/libgcc/build b/tcpkg/libgcc/build deleted file mode 100755 index abb90eb..0000000 --- a/tcpkg/libgcc/build +++ /dev/null @@ -1,14 +0,0 @@ -DEPENDS="gcc2" - -build() { - return -} - -deploy() { - local INPUT="$1" - local OUTPUT="$2" - local DEPLOY="$3" - - rsync -aH --files-from="$SCRIPTDIR/board/$BOARD/libgcc_files.txt" \ - "$TCDIR/$TARGET" "$DEPLOY" -} diff --git a/tcpkg/toolchain/build b/tcpkg/toolchain/build index 9027f61..1521340 100755 --- a/tcpkg/toolchain/build +++ b/tcpkg/toolchain/build @@ -1,9 +1,14 @@ -DEPENDS="gcc2 libgcc musl pkg-config file" +DEPENDS="gcc2 musl pkg-config file" build() { return } deploy() { - return + local INPUT="$1" + local OUTPUT="$2" + local DEPLOY="$3" + + rsync -aH --files-from="$SCRIPTDIR/board/$BOARD/libgcc_files.txt" \ + "$TCDIR/$TARGET" "$DEPLOY" }