IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 25, 2009, 8:26:57 AM (17 years ago)
Author:
mwv
Message:

Changed '/bin/true' to 'true'
because it's '/usr/bin/true' on some system
e.g. Mac OX 10.5 and should always be in the path.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/extsrc/gpcsw/Make.Common.fixed

    r23488 r25573  
    670670$(DIR_BIN)/%:   $(DIR_BIN)/%-$(VERSION)
    671671        @echo "--> Installing link to $(notdir $<) as $(notdir $@)"
    672         @-mv $@ $@.$(shell date +%H%M%S).TEXT_FILE_BUSY 2> /dev/null || /bin/true
    673         @-rm -f $(DIR_BIN)/*.TEXT_FILE_BUSY 2> /dev/null || /bin/true
     672        @-mv $@ $@.$(shell date +%H%M%S).TEXT_FILE_BUSY 2> /dev/null || true
     673        @-rm -f $(DIR_BIN)/*.TEXT_FILE_BUSY 2> /dev/null || true
    674674        @ln $< $@
    675675        # @-setuidinst $@
     
    677677$(DIR_BIN)/%-$(VERSION): scripts/%.sh
    678678        @echo "--> Installing sh script $(notdir $@)"
    679         @-mv $@ $@.$(shell date +%H%M%S).TEXT_FILE_BUSY 2> /dev/null || /bin/true
     679        @-mv $@ $@.$(shell date +%H%M%S).TEXT_FILE_BUSY 2> /dev/null || true
    680680        @$(INSTALL) -m 0555 $< $@ || ( rm -f $@ && exit 1 )
    681681
    682682$(DIR_BIN)/%-$(VERSION): $(EXECNAME)
    683683        @echo "--> Installing program $(notdir $@)"
    684         @-mv $@ $@.$(shell date +%H%M%S).TEXT_FILE_BUSY 2> /dev/null || /bin/true
     684        @-mv $@ $@.$(shell date +%H%M%S).TEXT_FILE_BUSY 2> /dev/null || true
    685685        @$(INSTSTRIP) -m 0755 $< $@ || ( rm -f $@ && exit 1 )
    686686        @chmod 0555 $@
Note: See TracChangeset for help on using the changeset viewer.