diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-08 16:09:33 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-08 16:09:33 +0000 |
commit | e8827f643862721daef784554b14d7800b59dd07 (patch) | |
tree | f435a4d4cb2492385018168904bfdf4dff889ad0 /Makefile.SH | |
parent | 4592e6caefc41a75573f112714d170071892a537 (diff) | |
download | perl-e8827f643862721daef784554b14d7800b59dd07.tar.gz |
avoid temporary files named 'tmp'
p4raw-id: //depot/perl@3331
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.SH b/Makefile.SH index 206514eaa6..1ba5e80101 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -279,8 +279,8 @@ miniperlmain$(OBJ_EXT): miniperlmain.c $(CCCMD) $(PLDLFLAGS) $*.c perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE) - sh writemain $(DYNALOADER) $(static_ext) > tmp - sh mv-if-diff tmp perlmain.c + sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp + sh mv-if-diff writemain.tmp perlmain.c perlmain$(OBJ_EXT): perlmain.c $(CCCMD) $(PLDLFLAGS) $*.c @@ -389,12 +389,12 @@ preplibrary: miniperl lib/Config.pm $(plextract) # (If trying to create a new port and having problems with the configpm script, # try 'make minitest' and/or commenting out the tests at the end of configpm.) lib/Config.pm: config.sh miniperl configpm - $(LDLIBPTH) ./miniperl configpm tmp - sh mv-if-diff tmp $@ + $(LDLIBPTH) ./miniperl configpm configpm.tmp + sh mv-if-diff configpm.tmp $@ lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm - $(LDLIBPTH) ./miniperl minimod.pl > tmp - sh mv-if-diff tmp $@ + $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp + sh mv-if-diff minimod.tmp $@ lib/re.pm: ext/re/re.pm rm -f $@ |