summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-04-05 19:32:58 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-04-05 19:32:58 (GMT)
commit0c7e6e7f82fbaac81bdd40ce75f50750f8e9f436 (patch)
tree0f3c5a20e06e6dab5f28690ce7026e404cfb8c5f
parent4762fcbebf31e7928be9f192e5245fb959f1aa27 (diff)
Enabled plugins loaded from the system directories.
-rw-r--r--debian/control2
-rw-r--r--debian/rules4
2 files changed, 3 insertions, 3 deletions
diff --git a/debian/control b/debian/control
index 37afdfb..551dc8f 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,7 @@ Vcs-Browser: http://git.0xdeadc0de.fr/cgi-bin/cgit.cgi/chrysalide.git/
Package: chrysalide
Architecture: amd64
-Depends: ${shlibs:Depends}, ${misc:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}, gir1.2-gtk-3.0
Description: Reverse Engineering Factory focused on embedded systems
Chrysalide is a fast tool collection for binary analysis. It is written using
the GTK+ toolkit and support several file formats and architectures. Python
diff --git a/debian/rules b/debian/rules
index b13df8e..086e28c 100644
--- a/debian/rules
+++ b/debian/rules
@@ -47,8 +47,8 @@ override_dh_auto_configure:
ifeq ($(PIE),yes)
echo PIE
- dh_auto_configure -- CFLAGS=-fPIC
+ dh_auto_configure -- --disable-rpath --without-local-resources CFLAGS=-fPIC
else
echo NO PIE
- dh_auto_configure --
+ dh_auto_configure -- --disable-rpath --without-local-resources
endif