summaryrefslogtreecommitdiffstats
path: root/package/util-linux/util-linux.mk
Commit message (Collapse)AuthorAgeFilesLines
* util-linux: bump to version 2.20.1Gustavo Zacarias2012-03-111-1/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: add host variant for host-lttng-babeltraceThomas Petazzoni2012-01-311-0/+14
| | | | | | | | | | lttng-babeltrace needs libuuid, which is provided by util-linux, and since we want to build lttng-babeltrace for the host, we need to build libuuid for the host. It's a shame that libuuid is part of such a big package as util-linux. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: fix partx build breakageGustavo Zacarias2011-11-081-2/+2
| | | | | | | | | addpart, delpart and partx are enabled by default so --disable now to avoid build breaking when we lack libblkid. Also select libblkid when it's enabled now. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: remove useless arguments from AUTOTARGETSThomas Petazzoni2011-09-291-1/+1
| | | | | | | | | | Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: bump versionPeter Korsgaard2011-09-051-2/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: fix install when locales are enabledPeter Korsgaard2011-08-121-0/+5
| | | | | | | | | | | | | | util-linux uses mkinstalldirs to install .po files when locales are enabled, but the definition of MKINSTALLDIRS comes from a tweaked nls.m4 (based on the one from gettext). When we autoreconf the package, we end up using the system (staging) version of nls.m4, so MKINSTALLDIRS doesn't get defined. Fix it by passing a definition of MKINSTALLDIRS to make during the install steps. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: fix libintl linking if presentPeter Korsgaard2011-08-091-0/+4
| | | | | | | The configure script correctly detects presence of libintl, but it forgets to link against it, breaking the build. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: fix BR2_PACKAGE_UTIL_LINUX_UUIDD optionSven Neumann2011-08-081-1/+1
| | | | | Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: add option for libmountPeter Korsgaard2011-07-291-0/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: install to stagingPeter Korsgaard2011-07-291-0/+1
| | | | | | For libblkid / libuuid. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: misc fixesPeter Korsgaard2011-07-271-0/+2
| | | | | | | - We patch configure.ac, so we need to autoreconf - configure uses pkg-config, so ensure the cross version is used. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: convert to autotarget and bump to 2.19.1Yegor Yefremov2011-07-271-87/+47Star
| | | | | | | [Peter: fix deps, restructure, add unshare] Signed-off-by: Chih-Min Chao <cmchao@gmail.com> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Add dependency from util-linux on ncursesThomas Petazzoni2010-08-101-0/+4
| | | | | | | | | util-linux can build without ncurses, but when ncurses is available, additional features can be built (such as the more command). Therefore, in util-linux.mk, when ncurses is available, mark it as a dependency. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Update all packages to quote $(TARGET_CC)Thomas Petazzoni2010-07-071-1/+1
| | | | | | | Now that TARGET_CC contains several space-separated words, it must be used quoted everywhere. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Update packages to BR2_NEEDS_GETTEXT_IF_LOCALEThomas Petazzoni2010-05-241-1/+1
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Make all package using gettext rely on BR2_NEEDS_GETTEXTThomas Petazzoni2010-05-201-2/+2
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* buildroot: silence ./configure step when building with 'make -s'Peter Korsgaard2009-10-011-1/+1
| | | | | | | | | | We have been passing -q to ./configure when using 'make -s' for packages using Makefile.autotools.in for some time. Do the same for packages using autotools, but not using the Makefile.autotools.in infrastructure, taking care to not do it for packages with hand written configure scripts. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Remove unnecessary dependencies on uclibc.Will Newton2009-09-031-1/+1
| | | | | | | | A C library will have been built by the toolchain makefiles, so there is no need for packages to explicitly depend on uclibc. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: use := instead of = to stop recursionPeter Korsgaard2009-08-311-1/+1
| | | | | | Unbreaks util-linux together with busybox Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: fix build with locale in toolchainPeter Korsgaard2009-08-301-3/+8
| | | | | | | | | Closes #529. util-linux needs to link with libintl when locale support is available / requested in the toolchain, similar to how it is done for avahi. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: fix libblkid detectionPeter Korsgaard2009-08-301-0/+1
| | | | | | | We don't have libblkid in BR, so make sure the configure script doesn't detect it if it is installed on the host. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* util-linux: fix download URLPeter Korsgaard2009-03-261-1/+1
|
* util-linux: bump versionPeter Korsgaard2009-03-031-13/+14
| | | | Fixes #19
* package/: convert to DOWNLOAD helperPeter Korsgaard2009-01-161-1/+1
|
* package/: get rid of unneeded $(strip ..)Peter Korsgaard2008-12-081-1/+1
|
* Add support for GNU and kernel.org mirrorsIvan Kuten2007-12-171-1/+1
|
* - global whitespace trimmingBernhard Reutner-Fischer2007-08-221-1/+1
|
* - sed -i -e "/;$/s/;$//g" $(egrep ";$" package/* package/*/*.mk toolchain/* ↵Bernhard Reutner-Fischer2007-08-211-1/+1
| | | | toolchain/*/*.mk */Makefile.in -l)
* Use <package>_VERSION in all <package>.mk instead of <package>_VERUlf Samuelsson2007-07-111-3/+3
|
* - add endian handling, mmap, memcmp checks to TARGET_CONFIGURE_ARGSBernhard Reutner-Fischer2007-06-271-2/+1Star
| | | | - use TARGET_CONFIGURE_ARGS where appropriate.
* yet more LDFLAGS handling fixupsEric Andersen2007-03-141-1/+1
|
* fixup package LDFLAGS handlingEric Andersen2007-03-131-0/+1
|
* fixup a whole steaming pile of insanity. When packages are configured,Eric Andersen2007-01-141-2/+3
| | | | | | | | | | | | | they should be configured with --prefix=/usr and we then need to use make DESTDIR=$(STAGING_DIR) install to get things installed into the staging directory. The current situation for many packages, which use --prefix=$(STAGING_DIR) results in the staging_dir paths getting compiled into the binary itself. This also adds in a pile of libtool fixups. Between broken pkgconfig, broken libtool handling, and broken --prefix settings, its a wonder things have worked as well as they have up till now. -Erik
* - add and use BR2_BZCAT config option.Bernhard Reutner-Fischer2006-11-171-1/+1
|
* version bump to 2.12r and remove old dead targetMike Frysinger2005-12-291-5/+2Star
|
* ver bumpMike Frysinger2005-09-241-6/+5Star
|
* Thomas Lundquist writes:Eric Andersen2005-07-121-0/+4
| | | | | | | | | | | | | | | | | | | | If I understand you correctly, you want the ncurses development headers on the target. a patch for this (named target_headers.patch and includes similar options for a few other libs in buildroot) can be found at: http://www.zelow.no/floppyfw/download/Development/Patches/buildroot/ (a few packages there aswell) it will add an option to put headers on target for ncurses, zlib and openssl. Thomas.
* be a bit more consistant with naming, always escape wildcardsEric Andersen2005-06-241-1/+1
|
* There is no need to have a separate 'Makefile.in' file in theEric Andersen2005-02-101-0/+8
| | | | | general case, therefore, combine the toplevel Makefile options such as setting TARGETS into the per-package *.mk file
* When both busybox and coreutils and/or util-linux are selected,Eric Andersen2004-12-271-0/+7
| | | | | | make certain that it is coreutils and/or util-linux that actually gets their utilities installed. -Erik
* Make the TAR_VERBOSITY option a bit more saneEric Andersen2004-10-091-1/+1
|
* use $(TAR_VERBOSITY)Mike Frysinger2004-10-091-1/+1
|
* facelift step number twoEric Andersen2004-10-091-1/+1
|
* Remove the old 'make' directory, and populate the new 'package'Eric Andersen2004-10-091-0/+75
directory.