diff options
author | Craig A. Berry <craigberry@mac.com> | 2012-09-14 19:43:05 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2012-09-14 19:46:18 -0500 |
commit | fe5e93dee32154bdde539f1862a8382cd476ac66 (patch) | |
tree | 357000f3457626b900914dfa8e5a20657e70072b | |
parent | b71c54b89aa7c965d23cc7cfdb7dff179d8f4163 (diff) | |
download | perl-fe5e93dee32154bdde539f1862a8382cd476ac66.tar.gz |
Add another include directory for the x2p files on VMS.
Because we now have:
#include "../unicode_constants.h"
which is a Unix-style path and cannot be combined with [.x2p] and
get a valid result.
-rw-r--r-- | vms/descrip_mms.template | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vms/descrip_mms.template b/vms/descrip_mms.template index 763fd7e115..41cbd86ad9 100644 --- a/vms/descrip_mms.template +++ b/vms/descrip_mms.template @@ -559,7 +559,7 @@ nonxsext : $(LIBPREREQ) preplibrary $(MINIPERL_EXE) [.pod]perlfunc.pod # search in same dir as source file [.x2p]a2p$(O) : [.x2p]a2p.c [.x2p]a2py.c [.x2p]INTERN.h [.x2p]a2p.h [.x2p]hash.h [.x2p]str.h config.h handy.h vmsish.h $(MINIPERL_EXE) $(MINIPERL) -pe "s/^#line\s+(\d+)\s+\Q""y.tab.c""/#line $1 ""y_tab.c""/;" $(MMS$SOURCE) >$(MMS$TARGET_NAME)_vms.c - $(CC) $(X2PCFLAGS) /Object=$(MMS$TARGET)/Include=([.x2p],[]) $(MMS$TARGET_NAME)_vms.c + $(CC) $(X2PCFLAGS) /Object=$(MMS$TARGET)/Include=([.x2p],[],"./x2p") $(MMS$TARGET_NAME)_vms.c Delete/Log/NoConfirm $(MMS$TARGET_NAME)_vms.c; # gcc cpp broken -- doesn't look in directory of source file for #include "" |