This is a hack to avoid having a version-specific path end up in libpbs.a because when maui gets built, it will also get the same path. If it was version dependent, then we would have to have a new version of maui installed every time we upgraded PBS. --- pbs-2.3.12-pw/buildutils/mkincludes/head.mk.in | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff -puN buildutils/mkincludes/head.mk.in~libpbs-path buildutils/mkincludes/head.mk.in --- pbs-2.3.12/buildutils/mkincludes/head.mk.in~libpbs-path 2004-04-17 11:21:03.000000000 -0400 +++ pbs-2.3.12-pw/buildutils/mkincludes/head.mk.in 2004-04-17 11:21:21.000000000 -0400 @@ -51,13 +51,13 @@ PBS_MACH = @PBS_MACH@ SCHD_TYPE = @SCHD_TYPE@ # The path and name of the special rcp used by MOM (pbs_rcp) -RCP_PATH = $(sbindir)/pbs_rcp +RCP_PATH = /usr/local/pbs/sbin/pbs_rcp # The path and name of the credential providing program used by the API. -IFF_PATH = $(sbindir)/pbs_iff +IFF_PATH = /usr/local/pbs/sbin/pbs_iff # The path and name of the demuxing program. -DEMUX_PATH = $(sbindir)/pbs_demux +DEMUX_PATH = /usr/local/pbs/sbin/pbs_demux # Absolute path of file holding default server name (for clients) PBS_DEFAULT_FILE = $(ROOT)@PBS_DEFAULT_FILE@ _