configure/tools provides a replacement for absPath.pl, use that instead.

This commit is contained in:
Andrew Johnson
2004-05-17 21:43:50 +00:00
parent 2bef3a2d08
commit ecd7d5a9ce
2 changed files with 2 additions and 17 deletions

View File

@@ -18,7 +18,8 @@ PROD_IOC_vxWorks = -nil-
DBD += softIoc.dbd
softIoc_DBD += base.dbd
USR_CXXFLAGS += -DEPICS_BASE=$(shell $(PERL) ../absPath.pl $(INSTALL_LOCATION))
ABS_INSTALL_DIR = $(shell $(PERL) $(TOOLS)/fullPathName.pl $(INSTALL_LOCATION))
USR_CXXFLAGS += -DEPICS_BASE=$(ABS_INSTALL_DIR)
softIoc_SRCS += softIoc_registerRecordDeviceDriver.cpp
softIoc_SRCS += softMain.cpp

View File

@@ -1,16 +0,0 @@
#!/usr/bin/perl
#*************************************************************************
# Copyright (c) 2002 The University of Chicago, as Operator of Argonne
# National Laboratory.
# Copyright (c) 2002 The Regents of the University of California, as
# Operator of Los Alamos National Laboratory.
# EPICS BASE Versions 3.13.7
# and higher are distributed subject to a Software License Agreement found
# in file LICENSE that is included with this distribution.
#*************************************************************************
use Cwd;
chdir $ARGV[0];
print cwd();