diff options
Diffstat (limited to 'repo/system')
-rw-r--r-- | repo/system/coreutils.xibuild | 2 | ||||
-rw-r--r-- | repo/system/gperf.xibuild | 2 | ||||
-rw-r--r-- | repo/system/libiconv.xibuild | 19 |
3 files changed, 2 insertions, 21 deletions
diff --git a/repo/system/coreutils.xibuild b/repo/system/coreutils.xibuild index 10c6fe1..2c0826a 100644 --- a/repo/system/coreutils.xibuild +++ b/repo/system/coreutils.xibuild @@ -13,7 +13,7 @@ build () { FORCE_UNSAFE_CONFIGURE=1 ./configure \ --prefix=/usr \ --enable-no-install-program=kill,uptime - make -liconv + make } package () { diff --git a/repo/system/gperf.xibuild b/repo/system/gperf.xibuild index 9a1327d..07ff515 100644 --- a/repo/system/gperf.xibuild +++ b/repo/system/gperf.xibuild @@ -8,7 +8,7 @@ SOURCE=http://ftp.gnu.org/pub/gnu/gperf/gperf-$PKG_VER.tar.gz DESC="Perfect hash function generator" build () { - ./configure LDFLAGS="-liconv" --prefix=/usr --docdir=/usr/share/doc/gperf-$PKG_VER + ./configure --prefix=/usr --docdir=/usr/share/doc/gperf-$PKG_VER make } diff --git a/repo/system/libiconv.xibuild b/repo/system/libiconv.xibuild deleted file mode 100644 index b22b6c6..0000000 --- a/repo/system/libiconv.xibuild +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -MAKEDEPS=(make ) -DEPS=(glibc) - -PKG_VER=1.16 -SOURCE=https://ftp.gnu.org/pub/gnu/libiconv/libiconv-$PKG_VER.tar.gz - -DESC="GNU charset conversion library" - -build () { - ./configure --prefix=/usr --disable-static && - make -} - -package () { - make prefix=/usr lib=lib DESTDIR=$PKG_DEST install -} - |