From 2a6db6cd80b65645d2f6930bc7ed052f09cddb3a Mon Sep 17 00:00:00 2001 From: florian Date: Sat, 4 Oct 2008 16:32:35 +0000 Subject: [PATCH] gettext was using Build/Install, while we can do this in Build/Compile (#4063) git-svn-id: svn://svn.openwrt.org/openwrt/packages@12853 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- libs/gettext/Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/libs/gettext/Makefile b/libs/gettext/Makefile index c01303fe3..aaaf9dc34 100644 --- a/libs/gettext/Makefile +++ b/libs/gettext/Makefile @@ -43,11 +43,9 @@ CONFIGURE_ARGS += \ --without-emacs define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" all -endef - -define Build/Install - $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" install + $(MAKE) -C $(PKG_BUILD_DIR) \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + all install endef define Build/InstallDev