fix for newer versions of find when trying to splitsymbols and rebase, thanks to simmo@mailandnews.com, r=leaf

git-svn-id: svn://10.0.0.236/trunk@78304 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
leaf%mozilla.org
2000-09-06 23:13:11 +00:00
parent 0523740f1d
commit f899a80fa9

View File

@@ -136,8 +136,8 @@ rebase:
!if defined(MOZILLA_OFFICIAL)
!if defined(FIND)
!if "$(REBASE)" != ""
echo rebasing $(DIST)
$(FIND) $(DIST) -name "*.dll" > rebase.lst
echo rebasing $(DIST:\=/)
$(FIND) $(DIST:\=/) -name "*.dll" > rebase.lst
$(REBASE) -b 60000000 -R . -G rebase.lst
del rebase.lst
!else
@@ -154,9 +154,9 @@ splitsymbols:
!if "$(SPLITSYM)" != ""
echo splitting symbols out of binaries
cd $(MOZ_SRC)\mozilla
$(FIND) $(DIST) -name "*.dll" -exec $(SPLITSYM) {} ;
$(FIND) $(DIST) -name "*.exe" -exec $(SPLITSYM) {} ;
$(FIND) $(DIST) -name "*.EXE" -exec $(SPLITSYM) {} ;
$(FIND) $(DIST:\=/) -name "*.dll" -exec $(SPLITSYM) {} ;
$(FIND) $(DIST:\=/) -name "*.exe" -exec $(SPLITSYM) {} ;
$(FIND) $(DIST:\=/) -name "*.EXE" -exec $(SPLITSYM) {} ;
!else
echo No splitsym defined.