diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-12-22 09:17:19 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-12-22 09:17:19 +0000 |
commit | da7d891f230b4e5490850734a81161f7b06064b9 (patch) | |
tree | 13d5dc9071dbe84fab49d18dcd4897bd4dfa6ae8 /debian | |
parent | 2283789a0b073a896f2c0d2947aec9c8c636f905 (diff) |
That was awfully stupid.
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/debian/rules b/debian/rules index 03ba4fa05..df22bd724 100755 --- a/debian/rules +++ b/debian/rules @@ -84,13 +84,14 @@ build-stamp: .config sed -i -e 's,.*UCLIBC_HAS_WCHAR.*,UCLIBC_HAS_WCHAR=y\nUCLIBC_HAS_LOCALE=n,g' \ .config -#ifeq ($(target),arm) + +ifeq ($(target),arm) sed -i -e 's,.*HAS_FPU.*,HAS_FPU=n\nUCLIBC_HAS_FLOATS=y\nUCLIBC_HAS_SOFT_FLOAT=y,g' .config echo CONFIG_GENERIC_ARM=y >>.config -#endif -#ifeq ($(target),i386) +endif +ifeq ($(target),i386) echo CONFIG_GENERIC_386=y >>.config -#endif +endif yes '' | make oldconfig mkdir -p lib |