Browse Source

modules: Changed LIBC, WEB and MTA to use $2 instead of evaluating the choice variable directly

legacy/next/gcc
Alejandro Mery 16 years ago
parent
commit
c4867f3eab
3 changed files with 11 additions and 10 deletions
  1. +4
    -3
      pkgsel.d/Base/LIBC.conf
  2. +5
    -5
      pkgsel.d/Services/Mail/MTA.conf
  3. +2
    -2
      pkgsel.d/Services/Web/Web.conf

+ 4
- 3
pkgsel.d/Base/LIBC.conf

@ -2,14 +2,15 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: target/mnemosyne/pkgsel/Base/LIBC.conf
# Copyright (C) 2008 The OpenSDE Project
# Copyright (C) 2002 - 2006 Alejandro Mery
#
#
# More information can be found in the files COPYING and README.
#
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- SDE-COPYRIGHT-NOTE-END ---
SDECFGSET_LIBC="$SDECFG_TRG_MNEMOSYNE_LIBC"
SDECFGSET_LIBC="$2"

+ 5
- 5
pkgsel.d/Services/Mail/MTA.conf

@ -1,20 +1,20 @@
#!/bin/sh
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
#
# Filename: target/mnemosyne/pkgsel/Services/Mail/MTA.conf
# Copyright (C) 2007 The OpenSDE Project
# Copyright (C) 2007 - 2008 The OpenSDE Project
# Copyright (C) 2002 - 2006 Alejandro Mery
#
#
# More information can be found in the files COPYING and README.
#
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- SDE-COPYRIGHT-NOTE-END ---
case "$SDECFG_TRG_MNEMOSYNE_MTA" in
case "$2" in
qmail-ldap) SDECFGSET_PKG_QMAIL_LDAP=1
SDECFGSET_PKG_QMAIL_LDAP_DOMAINALIAS=1
;;

+ 2
- 2
pkgsel.d/Services/Web/Web.conf

@ -2,6 +2,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: target/mnemosyne/pkgsel/Services/Web/Web.conf
# Copyright (C) 2008 The OpenSDE Project
# Copyright (C) 2002 - 2006 Alejandro Mery
#
# More information can be found in the files COPYING and README.
@ -12,10 +13,9 @@
# GNU General Public License can be found in the file COPYING.
# --- SDE-COPYRIGHT-NOTE-END ---
case "$SDECFG_TRG_MNEMOSYNE_WEB" in
case "$2" in
apache)
SDECFGSET_PKG_APACHE_SUEXEC=1
SDECFGSET_PKG_APACHE_DOCROOT="/srv"
;;
esac

Loading…
Cancel
Save