Fix 'dist' phase on mac (strip binaries)

This commit is contained in:
Arnaud Diederen
2016-01-08 16:40:31 +01:00
parent f7fc78598c
commit 696cd2d551
+4
View File
@@ -379,6 +379,10 @@ $(DIST_BINARY): $(BINARY) | dist_dirs
$(CP) $? $@
ifdef __LINUX__
strip $@
else
ifdef __MAC__
strip -x $@
endif
endif
dist: $(BINARY) pyfiles $(DIST_OTHER_TARGETS) $(DIST_BINARY) dist_cfg | dist_dirs