Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Condor $(OpSys) and $(Arch) parameter
- Date: Fri, 30 Oct 2009 14:18:22 -0500
- From: Zachary Miller <zmiller@xxxxxxxxxxx>
- Subject: Re: [Condor-users] Condor $(OpSys) and $(Arch) parameter
> Any suggestion to conciliate both usages, WINNT and "WINNT", into only one
> parameter, OpSysGeneric? The same for INTEL and "INTEL" with parameter
> ArchGeneric.
try something like this (i didn't test it):
ArchGenericUnquoted = INTEL
OpSysGenericUnquoted = WINNT
ArchGeneric = "$(ArchGenericUnquoted)"
OpSysGeneric = "$(OpSysGenericUnquoted)"
STARTD_ATTRS = ArchGeneric, OpSysGeneric, $(STARTD_ATTRS)
REQUIRE_LOCAL_CONFIG_FILE = False
LOCAL_CONFIG_FILE = \
$(LOCAL_CONFIG_FILE), \
\\$(EMBGRIDserver)\grid_env\CONDOR\3-pool\$(POOLNAME)\
condor_config.pool.1.$(OpSysGenericUnquoted)
cheers,
-zach