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:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user