diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-10-09 16:59:07 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-10-09 16:59:07 +0000 |
commit | e420f6b9156a5eb91e55a1e33b2fde6595d0829e (patch) | |
tree | 3a295fad3f56209f8b20383ed47f598fe46a61ca /include/makeinclude/platform_sunos5_sunc++.GNU | |
parent | 9b5f57f437b83b261f23d661e695b0362d60a47c (diff) | |
download | ATCD-e420f6b9156a5eb91e55a1e33b2fde6595d0829e.tar.gz |
replaced hard-coded /bin/rm -f with $(RM)
Diffstat (limited to 'include/makeinclude/platform_sunos5_sunc++.GNU')
-rw-r--r-- | include/makeinclude/platform_sunos5_sunc++.GNU | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/makeinclude/platform_sunos5_sunc++.GNU b/include/makeinclude/platform_sunos5_sunc++.GNU index bcd2005a0ba..341976c20a2 100644 --- a/include/makeinclude/platform_sunos5_sunc++.GNU +++ b/include/makeinclude/platform_sunos5_sunc++.GNU @@ -98,8 +98,8 @@ else #### a .so extension. Rather than muck with the ACE build rules and #### risk upsetting builds on other platforms, just ln the output #### after building it. - SOBUILD = /bin/rm -f $@; \ - $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.o $< && /bin/ln $(VSHDIR)$*.o $@ + SOBUILD = $(RM) $@; $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.o $< && \ + /bin/ln $(VSHDIR)$*.o $@ endif # BIN #### The following macro overrides enable creation of fast executables. |