X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage1%2Fpkg%2Fgcc;h=c3f9b1fc996fb1128dbc3c0c7ca3af7ebc50dfcb;hb=fc7d8c678ca78bef7c6e7eaeeb579269b7c501be;hp=c6c4894f2d17116a36ae1f6bb4776d1cf59d38de;hpb=84ffa3a4299c59046bbe6fdc6124087fbf5c5135;p=hvlinux.git diff --git a/stage1/pkg/gcc b/stage1/pkg/gcc index c6c4894..c3f9b1f 100644 --- a/stage1/pkg/gcc +++ b/stage1/pkg/gcc @@ -10,13 +10,13 @@ hvconfig_pre() --disable-nls \ --disable-libstdcxx-pch \ --with-system-zlib \ - --with-native-system-header-dir=/tools/include \ + --with-native-system-header-dir=${TOOLS_DIR}/include \ --disable-libssp \ --enable-checking=release \ --enable-libstdcxx-time \ --enable-languages=c,c++" - cd ${LFS_TMP}/${PACKAGE} + cd ${SRC_DIR} # Change the StartFile Spec to point to the correct library location: echo -en '\n' >> gcc/config/linux.h @@ -43,11 +43,11 @@ hvconfig_post() hvbuild() { ${HVMAKE} AS_FOR_TARGET="${AS}" LD_FOR_TARGET="${LD}" - ${HVMAKE} install + ${HVMAKE} DESTDIR=${LFS} install } hvbuild_post() { # Install the libiberty header file that is needed by some packages: - cp -v ${LFS_TMP}/${PACKAGE}/include/libiberty.h ${TOOLS_DIR}/include + cp -v ${SRC_DIR}/include/libiberty.h ${TOOLS_DIR}/include }