diff options
author | Daniil Baturin <daniil@baturin.org> | 2017-09-07 03:31:04 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2017-09-07 03:31:04 +0200 |
commit | b626e36f45a5cb24da4b69ec6de06ea84710e9bd (patch) | |
tree | 927a218dcbbf6a69d1ea731b03609484ce44d67f | |
parent | 41752cbef7b9e647feaa4a889c29fe76ca3a4c9f (diff) | |
download | vyos-1x-b626e36f45a5cb24da4b69ec6de06ea84710e9bd.tar.gz vyos-1x-b626e36f45a5cb24da4b69ec6de06ea84710e9bd.zip |
Oops, accidentally a wrong dir for the python install path.
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index f070f1f5e..d6d26c5c5 100755 --- a/debian/rules +++ b/debian/rules @@ -12,7 +12,7 @@ override_dh_auto_build: override_dh_auto_install: dh_install -pvyos-1x - cd python; python3 setup.py install --install-layout=deb --root $(DIR); cd .. + cd python; python3 setup.py install --install-layout=deb --root ../$(DIR); cd .. mkdir -p $(DIR)/$(VYOS_SBIN_DIR) cp -r src/conf-mode/* $(DIR)/$(VYOS_SBIN_DIR) |