When solving a linear programming problem in MATLAB using linprog of the form
$$ \min c^T x $$
subject to
$$ Ax \leq b, \; \left\| x \right\|_{1} = 1 $$
if we need to enforce the additional constraint that $L_1$ norm of $x$ is $1$, or $\|x\|_1=1$, how can this be converted into a set of inequations of the above form so that the trivial solution $x=0$ can be avoided?