Changeset 1620


Ignore:
Timestamp:
2000-10-27T09:35:21+13:00 (24 years ago)
Author:
paynter
Message:

Phind makefiles and buildcol.pl altered so that phind is installed by the
user the first time they request a phind index, and not automatically.

Location:
trunk/gsdl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/bin/script/buildcol.pl

    r1614 r1620  
    185185        print STDERR "To install them, change to the directory\n";
    186186        print STDERR "   $src\n";
    187         print STDERR "and type \"make install\".\n\n";
     187        print STDERR "and type \"make install-phind\".\n\n";
    188188        die "\n";
    189189    }
     
    197197            print STDERR "To install it, change to the directory\n";
    198198        print STDERR "   $src\n";
    199         print STDERR "and type \"make install\".\n\n";
     199        print STDERR "and type \"make install-phind\".\n\n";
     200        die "\n";
    200201    }
    201202   
  • trunk/gsdl/src/phind/generate/Makefile.in

    r1601 r1620  
    6161all : $(EXEC)
    6262
    63 install : $(EXEC)
     63# Phind is still experimental, so it is not installed by default. 
     64# An explicit "make install-phind" is required to get it on your system.
     65install :
     66
     67
     68install-phind : $(EXEC)
    6469    install -d $(GSDLHOME)/bin/$(GSDLOS)
    6570    install -m 775 -s $(EXEC) $(GSDLHOME)/bin/$(GSDLOS)
  • trunk/gsdl/src/phind/host/Makefile.in

    r1603 r1620  
    5252
    5353
    54 all : $(EXEC)
     54all: $(EXEC)
    5555
    56 install : $(EXEC)
     56
     57# Phind is still experimental, so it is not installed by default. 
     58# An explicit "make install-phind" is required to get it on your system.
     59install:
     60
     61
     62install-phind: $(EXEC)
    5763    install -d $(GSDLHOME)/cgi-bin
    5864    install -m 775 -s $(EXEC) $(GSDLHOME)/cgi-bin
Note: See TracChangeset for help on using the changeset viewer.