diff options
author | B. Stack <bgstack15@gmail.com> | 2024-01-26 20:03:39 -0500 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2024-01-26 20:03:39 -0500 |
commit | 9db68075ad14c28c43e15bd586fde357bd4f83b4 (patch) | |
tree | f0923a54424c2c3374fed959212e84a87de23a3c /newmoon/debian/rules | |
parent | waterfox obs service file (diff) | |
download | stackrpms-9db68075ad14c28c43e15bd586fde357bd4f83b4.tar.gz stackrpms-9db68075ad14c28c43e15bd586fde357bd4f83b4.tar.bz2 stackrpms-9db68075ad14c28c43e15bd586fde357bd4f83b4.zip |
nm 32.5.2 rc1
Diffstat (limited to 'newmoon/debian/rules')
-rwxr-xr-x | newmoon/debian/rules | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/newmoon/debian/rules b/newmoon/debian/rules index 3d4ed6f..6f11f13 100755 --- a/newmoon/debian/rules +++ b/newmoon/debian/rules @@ -3,6 +3,8 @@ # Some Debian build tools clear out some variables export SHELL=/bin/bash +MOZCONFIGFILE = debian/mozconfig + # stackrpms,2 just do not need lsb_release #distrel := $(shell lsb_release --codename --short) @@ -12,6 +14,7 @@ export SHELL=/bin/bash LDFLAGS += -Wl,--reduce-memory-overheads LDFLAGS += -Wl,--no-keep-memory +# stackrpms,3 must be legacy and sounds interesting # Add execution time and memory usage stats in the logs LDFLAGS += -Wl,--stats @@ -20,6 +23,8 @@ ifneq (,$(filter $(DEB_HOST_ARCH), armhf)) export DEB_CXXFLAGS_MAINT_APPEND = -mfpu=neon -funsafe-math-optimizations endif +#stackrpms,7-->1 I do not need this distrel logic + %: dh $@ @@ -33,10 +38,11 @@ override_dh_auto_clean: mv palemoon/branding/unofficial.unbuilt palemoon/branding/unofficial ; \ } || : +# Don't run the "autoreconfigure by default" added to debhelper >= 10. override_dh_autoreconf: override_dh_auto_configure: - cp debian/mozconfig mozconfig + cp $(MOZCONFIGFILE) . #stackrpms,4 ! test -d palemoon/branding/unofficial.unbuilt && { \ cp -pr palemoon/branding/unofficial palemoon/branding/unofficial.unbuilt && \ |