summaryrefslogtreecommitdiff
path: root/package/.template
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-01-06 18:48:54 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-01-06 18:48:54 +0100
commit43255b790d08156bb6474e0ca72c9a3440bd4302 (patch)
treea4135095572054b779a3e808739277aa71f15436 /package/.template
parent426e6ef0749fcc407512f130d463019334b8886c (diff)
document and fix setpgrp overwrite
not all packages do the right overwrite of this variable. uClibc does not need any arguments to setpgrp function. Finetune package template accordingly.
Diffstat (limited to 'package/.template')
-rw-r--r--package/.template/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/package/.template/Makefile b/package/.template/Makefile
index 66064ce81..67d1cc183 100644
--- a/package/.template/Makefile
+++ b/package/.template/Makefile
@@ -23,12 +23,14 @@ $(eval $(call PKG_template,@UPKG@,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PK
CONFIGURE_STYLE:= gnu
# use following to add ./configure options
#CONFIGURE_ARGS+= --disable-foo
+# overwrite any configure variables
+#CONFIGURE_ENV+= ac_cv_func_setpgrp_void=yes
BUILD_STYLE:= auto
INSTALL_STYLE:= auto
# please install all files and directories to the package dir
post-install:
- $(INSTALL_DIR) $(IDIR_@UPKG@)/bin
+ $(INSTALL_DIR) $(IDIR_@UPKG@)/usr/bin
$(INSTALL_BIN) $(WRKINST)/usr/bin/@PKG@ $(IDIR_@UPKG@)/usr/bin
include ${TOPDIR}/mk/pkg-bottom.mk