Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #13 from julialongtin/ARCH-JEL-1
Browse files Browse the repository at this point in the history
support machines without dpkg-dev installed.
  • Loading branch information
julialongtin authored Jan 22, 2019
2 parents df38c0b + 4067ad9 commit 7c5c220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SHELL := /usr/bin/env bash
VERSION := "0.8.3"
ARCH := $(shell [ -f "`which dpkg-architecture`" ] && dpkg-architecture -qDEB_HOST_ARCH )
ARCH := $(shell if [ -f "`which dpkg-architecture`" ]; then dpkg-architecture -qDEB_HOST_ARCH; else [ -f "`which dpkg`" ] && dpkg --print-architecture; fi )
BUILD ?= 1
OS := $(shell uname -s | tr '[:upper:]' '[:lower:]')

Expand Down

0 comments on commit 7c5c220

Please sign in to comment.