CalcProgrammer1

update-symbols.py

Apr 27th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. import os
  2.  
  3. for file in os.listdir("./debian"):
  4. name, ext = os.path.splitext(file)
  5. if(ext == ".symbols"):
  6. os.system("dpkg-gensymbols -p" + name + " -Pdebian/" + name + " -Odebian/" + name + ".symbols")
Add Comment
Please, Sign In to add comment