having this error running sudo dpkg-buildpackage -S
debian/rules clean
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
# Add here commands to clean up after the build process.
/usr/bin/make PREFIX = /usr clean
make: *** empty variable name. Stop.
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b jkmeter-0.4.0
dpkg-source: building jkmeter using existing jkmeter_0.4.0.orig.tar.gz
dpkg-source: building jkmeter in jkmeter_0.4.0-1.diff.gz
dpkg-source: cannot represent change to source/kmeterdsp.o: binary file contents changed
dpkg-source: cannot represent change to source/mkimage.o: binary file contents changed
dpkg-source: cannot represent change to source/kmeter.o: binary file contents changed
dpkg-source: cannot represent change to source/styles.o: binary file contents changed
dpkg-source: cannot represent change to source/jclient.o: binary file contents changed
dpkg-source: cannot represent change to source/cmeter.o: binary file contents changed
dpkg-source: cannot represent change to source/jkmeter.o: binary file contents changed
dpkg-source: cannot represent change to source/mainwin.o: binary file contents changed
dpkg-source: warning: executable mode 0755 of 'source/jkmeter' will not be represented in diff
dpkg-source: cannot represent change to source/jkmeter: binary file contents changed
dpkg-source: cannot represent change to source/stcorrdsp.o: binary file contents changed
dpkg-source: building jkmeter in jkmeter_0.4.0-1.dsc
dpkg-source: unrepresentable changes to source
dpkg-buildpackage: failure: dpkg-source -b jkmeter-0.4.0 gave error exit status 1
Thank you for any advice
mira
--
To UNSUBSCRIBE, email to debian-ment...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org
> having this error running sudo dpkg-buildpackage -S
So, you're trying to build a source package.
> debian/rules clean
> dh_testdir
> dh_testroot
> rm -f build-stamp configure-stamp
> # Add here commands to clean up after the build process.
> /usr/bin/make PREFIX = /usr clean
> make: *** empty variable name. Stop.
The command line received the following arguments:
‘/usr/bin/make’ ‘PREFIX’ ‘=’ ‘/usr’ ‘clean’
If you want to set a variable, you need that as a single argument:
$(MAKE) PREFIX=/usr clean
which will result in command-line arguments as:
‘/usr/bin/make’ ‘PREFIX=/usr’ ‘clean’
Then make will see a single argument setting a variable to a value.
--
\ “I washed a sock. Then I put it in the dryer. When I took it |
`\ out, it was gone.” —Steven Wright |
_o__) |
Ben Finney
Thank you a lot this wrong syntax was exactly the problem ...
regards
mira