Ignore:
Timestamp:
Nov 28, 2006, 8:08:14 PM (17 years ago)
Author:
jbarnold
Message:
Improved package dependency tracking
Location:
server/common/oursrc/lockeradm
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • server/common/oursrc/lockeradm/Makefile.in

    r1 r36  
    1010clean:
    1111        rm -f signup-scripts-frontend
    12 
    13 preauto: clean
    14         rm -f configure config.* Makefile admof signup-scripts-backend
    15         rm -rf auto*.cache
    16 
    17 ready: preauto
    18         autoconf
  • server/common/oursrc/lockeradm/configure.in

    r11 r36  
    55dnl Needed by admof.in
    66
    7 AC_PATH_PROG(fs_path, fs)
     7AC_ARG_WITH(fs,
     8[  --with-fs[=PATH]          fs is located at PATH],[
     9  if test "$withval" != "no" -a "$withval" != "yes"; then
     10    fs_path="$withval"
     11  fi
     12])
    813AC_SUBST(fs_path)
    9 AC_PATH_PROG(pts_path, pts)
     14if test "$fs_path" = ""; then
     15        AC_ERROR(Cannot find fs)
     16fi
     17
     18AC_ARG_WITH(pts,
     19[  --with-pts[=PATH]         pts is located at PATH],[
     20  if test "$withval" != "no" -a "$withval" != "yes"; then
     21    pts_path="$withval"
     22  fi
     23])
    1024AC_SUBST(pts_path)
     25if test "$pts_path" = ""; then
     26        AC_ERROR(Cannot find pts)
     27fi
    1128
    1229dnl Needed by signup-scripts-backend.in
     
    1431AC_PATH_PROG(ls_path, ls)
    1532AC_SUBST(ls_path)
     33if test "$ls_path" = ""; then
     34        AC_ERROR(Cannot find ls)
     35fi
    1636AC_PATH_PROG(grep_path, grep)
    1737AC_SUBST(grep_path)
     38if test "$grep_path" = ""; then
     39        AC_ERROR(Cannot find grep)
     40fi
    1841
    1942AC_PATH_PROG(sudo_path, sudo)
    2043AC_SUBST(sudo_path)
     44if test "$sudo_path" = ""; then
     45        AC_ERROR(Cannot find sudo)
     46fi
    2147AC_PATH_PROG(useradd_path, useradd)
    2248AC_SUBST(useradd_path)
     49if test "$useradd_path" = ""; then
     50        AC_ERROR(Cannot find useradd)
     51fi
    2352AC_PATH_PROG(groupadd_path, groupadd)
    2453AC_SUBST(groupadd_path)
     54if test "$groupadd_path" = ""; then
     55        AC_ERROR(Cannot find groupadd)
     56fi
     57
    2558AC_PATH_PROG(setquota_path, setquota)
    2659AC_SUBST(setquota_path)
     60if test "$setquota_path" = ""; then
     61        AC_ERROR(Cannot find setquota)
     62fi
    2763
    2864AC_PATH_PROG(hesinfo_path, hesinfo)
    2965AC_SUBST(hesinfo_path)
     66if test "$hesinfo_path" = ""; then
     67        AC_ERROR(Cannot find hesinfo)
     68fi
    3069
    3170dnl Needed by modbash.in
    3271
    3372AC_PATH_PROG(bash_path, bash)
    34 AC_SUBST(bash)
     73AC_SUBST(bash_path)
     74if test "$bash_path" = ""; then
     75        AC_ERROR(Cannot find bash)
     76fi
    3577
    3678AC_OUTPUT(Makefile)
Note: See TracChangeset for help on using the changeset viewer.