Changeset 16619


Ignore:
Timestamp:
2008-07-31T13:34:43+12:00 (16 years ago)
Author:
davidb
Message:

change of [ -d .. ] to test -d ...

Location:
gsdl/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/configure

    r16572 r16619  
    74257425moduleDirs=""
    74267426MODULEDIRS=""
    7427 if  -d modules ; then
     7427if test -d modules ; then
    74287428  for x in `find modules -mindepth 1 -maxdepth 2`; do
    74297429    if test -d "$x"; then
  • gsdl/trunk/configure.in

    r16572 r16619  
    430430moduleDirs=""
    431431MODULEDIRS=""
    432 if [ -d modules ] ; then
     432if test -d modules ; then
    433433  for x in `find modules -mindepth 1 -maxdepth 2`; do
    434434    if test -d "$x"; then
Note: See TracChangeset for help on using the changeset viewer.